AI-Chatbot / app.py
VethaNarayananG's picture
Update app.py
3ac53ae verified
Raw
History Blame Contribute Delete
96 Bytes
import gradio as gr
gr.Interface(
lambda x: f"Hello {x}",
"text",
"text"
).launch()