Bit_gpt_0.2.8 / app.py
Piux24's picture
Update app.py
3fd9e1f verified
raw
history blame
150 Bytes
import gradio as gr
def chat(message, history):
return "Hello! This is BIT-GPT 0.2.8 responding."
iface = gr.ChatInterface(chat)
iface.launch()