ZENLLC commited on
Commit
4027808
·
verified ·
1 Parent(s): 6b9d1a2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -2
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: Simple Chatbot
3
- emoji: 🌖
4
  colorFrom: pink
5
  colorTo: red
6
  sdk: gradio
@@ -10,5 +10,20 @@ pinned: false
10
  license: apache-2.0
11
  short_description: SCB
12
  ---
 
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  title: Simple Chatbot
3
+ emoji:
4
  colorFrom: pink
5
  colorTo: red
6
  sdk: gradio
 
10
  license: apache-2.0
11
  short_description: SCB
12
  ---
13
+ # Simple DialoGPT Chatbot (Gradio + Transformers)
14
 
15
+ A bare-bones conversational bot you can fork, remix, or swap to any open-weights model on the Hugging Face Hub.
16
+
17
+ * **No external API keys** – the model is pulled once at build time.
18
+ * Runs on free CPU Spaces (≈ 15 s cold-start, then ~1-3 s/response).
19
+ * File breakdown
20
+ * `app.py` – Gradio UI + chat loop
21
+ * `requirements.txt` – dependencies (Transformers, Torch, Gradio)
22
+
23
+ To deploy your own:
24
+
25
+ ```bash
26
+ hf_hub_new simple-chatbot --sdk gradio # or click “Create Space”
27
+ git add .
28
+ git commit -m "first commit"
29
+ git push