ElizaChatbot / app.py
mikepastor11's picture
Update app.py
84fdd41 verified
raw
history blame
157 Bytes
import gradio as gr
def greet(name):
return "Hello there " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()