import gradio as gr def chat(message, history): return "Hello! This is BIT-GPT 0.2.8 responding." iface = gr.ChatInterface(chat) iface.launch()