sample-chat / app.py
hysts's picture
hysts HF staff
Update
7dec3b3
raw
history blame contribute delete
102 Bytes
import gradio as gr
def fn(message, history):
return message
gr.ChatInterface(fn=fn).launch()