8bed932 99c8158
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python import gradio as gr def fn(message, history, text): return message with gr.Blocks() as demo: gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()]) demo.queue().launch()