| --- |
| language: |
| - ru |
| - en |
| - tg |
| license: other |
| license_name: proprietary |
| tags: |
| - text-generation |
| - conversational |
| - tajikgpt |
| - tajikgpt-team |
| - multilingual |
| - chatbot |
| - ai-assistant |
| pipeline_tag: text-generation |
| inference: false |
| --- |
| |
| # TJ-1.0 Mini |
|
|
| 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. |
|
|
| ## Model Details |
|
|
| | Property | Value | |
| |----------|-------| |
| | Developer | SoulLab | |
| | Model type | Large Language Model | |
| | Max output tokens | 4,096 | |
| | Context window | 128,000 tokens | |
| | Languages | Russian, English, Tajik, and 50+ more | |
| | License | Proprietary | |
|
|
| ## Intended Use |
|
|
| - Quick Q&A and simple conversations |
| - Fast text generation and summarization |
| - Lightweight tasks where speed matters more than depth |
| - Multilingual chat in Russian, English, Tajik and other languages |
|
|
| ## How to Use |
|
|
| TJ-1.0 Mini is available via the [TajikGPT API](https://tajikgpt.com/docs). It is not available for download. |
|
|
| ### Python SDK |
|
|
| ```bash |
| pip install tajikgpt |
| ``` |
|
|
| ```python |
| from tajikgpt import TajikGPT |
| |
| client = TajikGPT(api_key="sk-tj-your-key") |
| |
| response = client.chat.completions.create( |
| model="tj-1.0-mini", |
| messages=[{"role": "user", "content": "Привет!"}] |
| ) |
| print(response.choices[0].message.content) |
| ``` |
|
|
| ### REST API |
|
|
| ```bash |
| curl -X POST https://tajikgpt.com/api/tj/chat \ |
| -H "Content-Type: application/json" \ |
| -H "Authorization: Bearer sk-tj-your-key" \ |
| -d '{ |
| "model": "tj-1.0-mini", |
| "messages": [{"role": "user", "content": "Hello!"}] |
| }' |
| ``` |
|
|
| ## Model Family |
|
|
| | Model | Description | Tier | |
| |-------|-------------|------| |
| | **TJ-1.0 Mini** | **Fast, lightweight** | **Free** | |
| | [TJ-1.0](https://huggingface.co/TajikGPT-Team/tj-1.0) | Balanced speed & quality | Free | |
| | [TJ-1.0 Pro](https://huggingface.co/TajikGPT-Team/tj-1.0-pro) | Advanced + Vision | Plus | |
| | [TJ-1.0 Ultra](https://huggingface.co/TajikGPT-Team/tj-1.0-ultra) | Top performance | Plus | |
| | [TJ-Coder](https://huggingface.co/TajikGPT-Team/tj-coder) | Code specialist | Free | |
|
|
| ## Links |
|
|
| - [TajikGPT Platform](https://tajikgpt.com) |
| - [API Documentation](https://tajikgpt.com/docs) |
| - [Python SDK on PyPI](https://pypi.org/project/tajikgpt/) |
| - [Try TajikGPT Demo](https://huggingface.co/spaces/TajikGPT-Team/tajikgpt) |
| - [SoulLab](https://soullab.space) |
|
|