second-space / app.py
SushmithaCh's picture
Update app.py
a75fc11 verified
Raw
History Blame Contribute Delete
139 Bytes
import gradio as gr
def respond(message, history):
return f"You say {message} \n I say Hello!!"
gr.ChatInterface(fn=respond).launch()