Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
gr.HTML("<h1><center>Mistral 7B Instruct<h1><center>")
|
5 |
+
gr.Markdown("Create a Healthsheet for your healthcare dataset.")
|
6 |
+
input1 = gr.Textbox(label='first question here')
|
7 |
+
|
8 |
+
if __name__ == "__main__":
|
9 |
+
demo.launch()
|