CoolFace
Modelpublic

TajikGPT-Team/tj-coder

sourceHugging Faceotherupdated 7mo agoView on Hugging Face
0likes
Model Card

TJ-Coder

TJ-Coder is a code-specialized model from TajikGPT by SoulLab. Optimized for code generation, debugging, review and explanation across all major programming languages.

Model Details

PropertyValue
DeveloperSoulLab
Model typeCode Language Model
Max output tokens32,768
Context window131,072 tokens
LanguagesRussian, English + all major programming languages
LicenseProprietary

Intended Use

  • —Code generation in Python, JavaScript, TypeScript, Java, C++, Go, Rust and more
  • —Code review, debugging and optimization
  • —Code explanation and documentation generation
  • —Algorithm design and data structure implementation
  • —SQL queries, shell scripts, DevOps configurations

How to Use

TJ-Coder is available via the TajikGPT API and the dedicated TJ-Coder IDE. 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-coder",
    messages=[{"role": "user", "content": "Write a Python function to sort a list"}]
)
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-coder",
    "messages": [{"role": "user", "content": "Write a REST API in Node.js"}]
  }'

Model Family

ModelDescriptionTier
TJ-1.0 MiniFast, lightweightFree
TJ-1.0Balanced speed & qualityFree
TJ-1.0 ProAdvanced + VisionPlus
TJ-1.0 UltraTop performancePlus
TJ-CoderCode specialistFree

Links