import gradio as gr def chat(message, history): reply = "नमस्ते 🙏, मैं BharatGPT हूँ. आपने कहा: " + message history.append((message, reply)) return history, "" demo = gr.ChatInterface( chat, title="BharatGPT", description="एक साधारण चैटबॉट जो हिन्दी में जवाब देता है" ) demo.launch()