File size: 101 Bytes
d85614c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr


def fn(message, history):
    return message


gr.ChatInterface(fn=fn).launch()