sample-chat / app.py
abidlabs's picture
abidlabs HF staff
Update app.py
1f1c7b5 verified
raw
history blame contribute delete
117 Bytes
import gradio as gr
def fn(message, history):
return message
gr.ChatInterface(fn=fn).launch(show_error=True)