#!/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()