katielink commited on
Commit
f148f5c
β€’
1 Parent(s): efebb35

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
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()