custom-chatbot / app.py
fastx's picture
Update app.py
10f3c45
raw
history blame
184 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch()