hysts's picture
hysts HF Staff
Update
99c8158
raw
history blame contribute delete
208 Bytes
#!/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()