Chatbot / chatbot /app.py
Vivekkrishu's picture
Initial commit
5e9aba9
import gradio as gr
def respond(message):
return f"You said: {message}"
iface = gr.Interface(fn=respond, inputs="text", outputs="text")
iface.launch()