Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bitwardha
/
Bit_gpt_0.2.8
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3fd9e1f
Bit_gpt_0.2.8
/
app.py
Piux24
Update app.py
3fd9e1f
verified
3 months ago
raw
Copy download link
history
blame
Safe
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()