import gradio as gr def respond(message): return f"Received: {message}" default_instruction = '>' gr.ChatInterface(fn=respond, chatbot=gr.Chatbot(), textbox=gr.Textbox(value=default_instruction)).launch()