import gradio as gr with gr.Blocks() as demo: gr.HTML("

Healthsheet Creator!

") gr.Markdown("Create a Healthsheet for your healthcare dataset.") input1 = gr.Textbox(label='first question here') if __name__ == "__main__": demo.launch()