Spaces:
Sleeping
Sleeping
File size: 102 Bytes
7dec3b3 |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
def fn(message, history):
return message
gr.ChatInterface(fn=fn).launch()
|