Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,9 @@ tags:
|
|
| 10 |
- conversational
|
| 11 |
- tajikgpt
|
| 12 |
- tajikgpt-team
|
|
|
|
|
|
|
|
|
|
| 13 |
pipeline_tag: text-generation
|
| 14 |
inference: false
|
| 15 |
---
|
|
@@ -32,11 +35,20 @@ TJ-1.0 Mini is a fast, lightweight model from the [TajikGPT](https://tajikgpt.co
|
|
| 32 |
## Intended Use
|
| 33 |
|
| 34 |
- Quick Q&A and simple conversations
|
| 35 |
-
- Fast text generation
|
| 36 |
- Lightweight tasks where speed matters more than depth
|
|
|
|
| 37 |
|
| 38 |
## How to Use
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
```python
|
| 41 |
from tajikgpt import TajikGPT
|
| 42 |
|
|
@@ -49,8 +61,32 @@ response = client.chat.completions.create(
|
|
| 49 |
print(response.choices[0].message.content)
|
| 50 |
```
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
## Links
|
| 53 |
|
| 54 |
- [TajikGPT Platform](https://tajikgpt.com)
|
| 55 |
- [API Documentation](https://tajikgpt.com/docs)
|
| 56 |
-
- [Python SDK](https://pypi.org/project/tajikgpt/)
|
|
|
|
|
|
|
|
|
| 10 |
- conversational
|
| 11 |
- tajikgpt
|
| 12 |
- tajikgpt-team
|
| 13 |
+
- multilingual
|
| 14 |
+
- chatbot
|
| 15 |
+
- ai-assistant
|
| 16 |
pipeline_tag: text-generation
|
| 17 |
inference: false
|
| 18 |
---
|
|
|
|
| 35 |
## Intended Use
|
| 36 |
|
| 37 |
- Quick Q&A and simple conversations
|
| 38 |
+
- Fast text generation and summarization
|
| 39 |
- Lightweight tasks where speed matters more than depth
|
| 40 |
+
- Multilingual chat in Russian, English, Tajik and other languages
|
| 41 |
|
| 42 |
## How to Use
|
| 43 |
|
| 44 |
+
TJ-1.0 Mini is available via the [TajikGPT API](https://tajikgpt.com/docs). It is not available for download.
|
| 45 |
+
|
| 46 |
+
### Python SDK
|
| 47 |
+
|
| 48 |
+
```bash
|
| 49 |
+
pip install tajikgpt
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
```python
|
| 53 |
from tajikgpt import TajikGPT
|
| 54 |
|
|
|
|
| 61 |
print(response.choices[0].message.content)
|
| 62 |
```
|
| 63 |
|
| 64 |
+
### REST API
|
| 65 |
+
|
| 66 |
+
```bash
|
| 67 |
+
curl -X POST https://tajikgpt.com/api/tj/chat \
|
| 68 |
+
-H "Content-Type: application/json" \
|
| 69 |
+
-H "Authorization: Bearer sk-tj-your-key" \
|
| 70 |
+
-d '{
|
| 71 |
+
"model": "tj-1.0-mini",
|
| 72 |
+
"messages": [{"role": "user", "content": "Hello!"}]
|
| 73 |
+
}'
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
## Model Family
|
| 77 |
+
|
| 78 |
+
| Model | Description | Tier |
|
| 79 |
+
|-------|-------------|------|
|
| 80 |
+
| **TJ-1.0 Mini** | **Fast, lightweight** | **Free** |
|
| 81 |
+
| [TJ-1.0](https://huggingface.co/TajikGPT-Team/tj-1.0) | Balanced speed & quality | Free |
|
| 82 |
+
| [TJ-1.0 Pro](https://huggingface.co/TajikGPT-Team/tj-1.0-pro) | Advanced + Vision | Plus |
|
| 83 |
+
| [TJ-1.0 Ultra](https://huggingface.co/TajikGPT-Team/tj-1.0-ultra) | Top performance | Plus |
|
| 84 |
+
| [TJ-Coder](https://huggingface.co/TajikGPT-Team/tj-coder) | Code specialist | Free |
|
| 85 |
+
|
| 86 |
## Links
|
| 87 |
|
| 88 |
- [TajikGPT Platform](https://tajikgpt.com)
|
| 89 |
- [API Documentation](https://tajikgpt.com/docs)
|
| 90 |
+
- [Python SDK on PyPI](https://pypi.org/project/tajikgpt/)
|
| 91 |
+
- [Try TajikGPT Demo](https://huggingface.co/spaces/TajikGPT-Team/tajikgpt)
|
| 92 |
+
- [SoulLab](https://soullab.space)
|