lost / app.py
castertenslow's picture
Update app.py
0061154 verified
raw
history blame contribute delete
175 Bytes
import gradio as gr
def chat(message):
return f"Lana: You said '{message}'"
iface = gr.Interface(fn=chat, inputs="text", outputs="text", title="Lana")
iface.launch(True)