ci-base / app.py
abidlabs's picture
abidlabs HF staff
Create app.py
d85614c verified
raw
history blame contribute delete
101 Bytes
import gradio as gr
def fn(message, history):
return message
gr.ChatInterface(fn=fn).launch()