Spaces:
Running
Running
import gradio as gr | |
def fn(message, history): | |
return message | |
gr.ChatInterface(fn=fn).launch() | |
import gradio as gr | |
def fn(message, history): | |
return message | |
gr.ChatInterface(fn=fn).launch() | |