File size: 150 Bytes
3fd9e1f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def chat(message, history):
    return "Hello! This is BIT-GPT 0.2.8 responding."

iface = gr.ChatInterface(chat)

iface.launch()