File size: 760 Bytes
9be7c65
 
4027808
9be7c65
 
 
 
 
 
 
 
 
4027808
9be7c65
4027808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
title: Simple Chatbot
emoji: 
colorFrom: pink
colorTo: red
sdk: gradio
sdk_version: 5.36.2
app_file: app.py
pinned: false
license: apache-2.0
short_description: SCB
---
# Simple DialoGPT Chatbot (Gradio + Transformers)

A bare-bones conversational bot you can fork, remix, or swap to any open-weights model on the Hugging Face Hub.

* **No external API keys** – the model is pulled once at build time.
* Runs on free CPU Spaces (≈ 15 s cold-start, then ~1-3 s/response).
* File breakdown  
  * `app.py` – Gradio UI + chat loop  
  * `requirements.txt` – dependencies (Transformers, Torch, Gradio)

To deploy your own:

```bash
hf_hub_new simple-chatbot --sdk gradio   # or click “Create Space”
git add .
git commit -m "first commit"
git push