import gradio as gr description = """ When in legal doubt, you better call BLOOM! Ask BLOOM any legal question: """ title = "Better Call Bloom!" examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]] def greet(name): return "Hello " + name + "!" demo = gr.Interface( fn=greet, inputs=gr.Textbox(lines=2, placeholder="Write your question here..."), outputs="text", title=title, description=description ) demo.launch()