TajikGPT-Team/tj-coder
0
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
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
pip install tajikgptfrom 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
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"}]
}'