import gradio as gr def response(message,history): response = (f"Hello World {message}") return response gr.ChatInterface(fn=response).launch()