import gradio as gr def greet(name): return "Hello " + name + "!!" iface = gr.Interface.load("pradhaph/medical-falcon-7b", inputs=gr.Textbox(lines=5, label="Input Text") # customizes the input component ).launch() iface.launch()