Muhammad Aminov commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ru
|
| 4 |
+
- en
|
| 5 |
+
- tg
|
| 6 |
+
license: other
|
| 7 |
+
license_name: proprietary
|
| 8 |
+
tags:
|
| 9 |
+
- text-generation
|
| 10 |
+
- conversational
|
| 11 |
+
- tajikgpt
|
| 12 |
+
- tajikgpt-team
|
| 13 |
+
pipeline_tag: text-generation
|
| 14 |
+
inference: false
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# TJ-1.0 Mini
|
| 18 |
+
|
| 19 |
+
TJ-1.0 Mini is a fast, lightweight model from the [TajikGPT](https://tajikgpt.com) platform by [SoulLab](https://soullab.space). Optimized for speed on simple tasks.
|
| 20 |
+
|
| 21 |
+
## Model Details
|
| 22 |
+
|
| 23 |
+
| Property | Value |
|
| 24 |
+
|----------|-------|
|
| 25 |
+
| Developer | SoulLab |
|
| 26 |
+
| Model type | Large Language Model |
|
| 27 |
+
| Max output tokens | 4,096 |
|
| 28 |
+
| Context window | 128,000 tokens |
|
| 29 |
+
| Languages | Russian, English, Tajik, and 50+ more |
|
| 30 |
+
| License | Proprietary |
|
| 31 |
+
|
| 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 |
+
|
| 43 |
+
client = TajikGPT(api_key="sk-tj-your-key")
|
| 44 |
+
|
| 45 |
+
response = client.chat.completions.create(
|
| 46 |
+
model="tj-1.0-mini",
|
| 47 |
+
messages=[{"role": "user", "content": "Привет!"}]
|
| 48 |
+
)
|
| 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/)
|