DSDUDEd commited on
Commit
40d2f3c
Β·
verified Β·
1 Parent(s): f7eee5e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -19
README.md CHANGED
@@ -1,35 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # πŸ€– AI_HUB
2
 
3
- **AI_HUB** is a custom Hugging Face Space built using **Docker**, running two open-source coding models:
4
 
5
- - 🧠 `Qwen/Qwen2.5-Coder-1.5B`
6
- - ⚑ `deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B`
7
 
8
  This project provides a sleek **custom Flask web interface** (no Gradio) with model switching and code-friendly chat generation.
9
 
10
  ---
11
 
12
  ## 🧩 Features
13
- - πŸš€ Two high-quality 1.5B coding models.
14
- - 🧰 Docker-based environment (full control, no SDK limits).
15
- - πŸ–₯️ Custom frontend with HTML/CSS/JS.
16
- - 🧠 Model selection between Qwen and DeepSeek.
17
- - πŸ’¬ Simple chat interface for quick experimentation.
 
18
 
19
  ---
20
 
21
  ## βš™οΈ Hugging Face Space Configuration
22
 
23
- This section **must appear at the top** of your Hugging Face Space `README.md` so it builds correctly.
 
 
 
 
24
 
25
- ```yaml
26
- ---
27
- title: AI_HUB
28
- emoji: πŸ€–
29
- colorFrom: blue
30
- colorTo: indigo
31
- sdk: docker
32
- pinned: false
33
- app_port: 7860
34
- license: mit
35
  ---
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: AI_HUB
3
+ emoji: πŸ€–
4
+ colorFrom: blue
5
+ colorTo: indigo
6
+ sdk: docker
7
+ app_port: 7860
8
+ pinned: false
9
+ license: mit
10
+ ---
11
+
12
  # πŸ€– AI_HUB
13
 
14
+ AI_HUB is a custom Hugging Face Space built using Docker, running two open-source coding models:
15
 
16
+ - 🧠 Qwen/Qwen2.5-Coder-1.5B
17
+ - ⚑ deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
18
 
19
  This project provides a sleek **custom Flask web interface** (no Gradio) with model switching and code-friendly chat generation.
20
 
21
  ---
22
 
23
  ## 🧩 Features
24
+
25
+ - πŸš€ Two high-quality 1.5B coding models.
26
+ - 🧰 Docker-based environment (full control, no SDK limits).
27
+ - πŸ–₯️ Custom frontend with HTML/CSS/JS.
28
+ - 🧠 Model selection between Qwen and DeepSeek.
29
+ - πŸ’¬ Simple chat interface for quick experimentation.
30
 
31
  ---
32
 
33
  ## βš™οΈ Hugging Face Space Configuration
34
 
35
+ - `sdk: docker` tells Hugging Face to use your Dockerfile.
36
+ - `app_port: 7860` exposes the Flask app inside the container.
37
+ - `pinned: false` indicates the Space is not pinned.
38
+
39
+ Reference: [Spaces Config Reference](https://huggingface.co/docs/hub/spaces-config-reference)
40
 
 
 
 
 
 
 
 
 
 
 
41
  ---
42
+
43
+ ## πŸ‹ Run Locally
44
+
45
+ ```bash
46
+ git clone https://huggingface.co/spaces/<your-username>/AI_HUB
47
+ cd AI_HUB
48
+ docker build -t ai_hub .
49
+ docker run -p 7860:7860 ai_hub