tj-1.0-mini / README.md
soul-muxammad's picture
Update README.md
8ce94d2 verified
|
Raw
History Blame Contribute Delete
2.39 kB
metadata
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 platform by SoulLab. 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. It is not available for download.

Python SDK

pip install tajikgpt
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

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 Balanced speed & quality Free
TJ-1.0 Pro Advanced + Vision Plus
TJ-1.0 Ultra Top performance Plus
TJ-Coder Code specialist Free

Links