katielink's picture
Update app.py
a4f6a29
raw
history blame
No virus
278 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.HTML("<h1><center>Healthsheet Creator!<h1><center>")
gr.Markdown("Create a Healthsheet for your healthcare dataset.")
input1 = gr.Textbox(label='first question here')
if __name__ == "__main__":
demo.launch()