Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bitwardha
/
Bit_gpt_0.2.8
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Piux24
commited on
Feb 21
Commit
3fd9e1f
·
verified
·
1 Parent(s):
2fbff1b
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def chat(message, history):
4
+
return "Hello! This is BIT-GPT 0.2.8 responding."
5
+
6
+
iface = gr.ChatInterface(chat)
7
+
8
+
iface.launch()