Spaces:
Sleeping
Sleeping
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,55 +1,34 @@
|
|
1 |
-
|
2 |
-
# π€ DataSynth
|
3 |
-
|
4 |
-
**DataSynth** is an AI chatbot built using the powerful Gemma 2B language model.
|
5 |
-
It provides intelligent responses and is accessible via a user-friendly Gradio interface.
|
6 |
-
The project is hosted on Hugging Face Spaces.
|
7 |
-
|
8 |
---
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
---
|
18 |
|
19 |
-
|
20 |
|
21 |
-
|
22 |
-
|---------------------|------------------------|------------------------------------|
|
23 |
-
| π€ LLM | Gemma 2B | Language model |
|
24 |
-
| π§ Framework | LangChain | LLM prompt and logic control |
|
25 |
-
| π¬ UI | Gradio | Chat interface |
|
26 |
-
| βοΈ Hosting | Hugging Face Spaces | Deploying and sharing |
|
27 |
-
| π Integration | huggingface_hub | Push/pull model/code |
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
## π¦ Requirements
|
32 |
-
|
33 |
-
- Python 3.8+
|
34 |
-
- `transformers`
|
35 |
-
- `langchain`
|
36 |
-
- `langchain_huggingface`
|
37 |
-
- `gradio`
|
38 |
-
- `huggingface_hub`
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
-
## π
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
βββ requirements.txt
|
48 |
-
βββ DataSynth.py
|
49 |
|
50 |
---
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
You can launch the chatbot from Hugging Face Spaces once deployed, or run locally via Colab or your terminal.
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: DataSynth
|
3 |
+
emoji: π€
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: blue # Changed from cyan to blue
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: "4.15.0"
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
---
|
11 |
|
12 |
+
# DataSynth
|
13 |
|
14 |
+
DataSynth is a chatbot built using **Gemma 2B**, integrated via `langchain` and deployed with Gradio.
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
## π Tech Stack
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
| Technology | Description |
|
19 |
+
|-------------------|-----------------------------------------|
|
20 |
+
| Python | Programming language |
|
21 |
+
| Transformers | Model loading and inference |
|
22 |
+
| LangChain | Prompt templates and LLM chaining |
|
23 |
+
| Gradio | UI framework for interactive demos |
|
24 |
+
| Hugging Face Hub | Deployment platform |
|
25 |
|
26 |
+
## π Files
|
27 |
|
28 |
+
- `app.py` β Main Gradio app
|
29 |
+
- `requirements.txt` β Required packages
|
30 |
+
- `README.md` β Project overview and config
|
|
|
|
|
31 |
|
32 |
---
|
33 |
|
34 |
+
π Try it live on [Hugging Face Spaces](https://huggingface.co/spaces/sudiptaverse/DataSynth)
|
|
|
|
|
|