TJ-Image 0.5
TJ-Image 0.5 is a legacy image generation model from TajikGPT by SoulLab. Lightweight and fast image generation.
Model Details
| Property | Value |
|---|---|
| Developer | SoulLab |
| Model type | Text-to-Image (Legacy) |
| Output size | 1024x1024 |
| Languages | Russian, English, Tajik, and 50+ more |
| License | Proprietary |
How to Use
Python SDK
from tajikgpt import TajikGPT
client = TajikGPT(api_key="sk-tj-your-key")
response = client.images.generate(
prompt="A cat sitting on a windowsill",
image_model="tj-image-0.5"
)
print(response.data[0].url)
REST API
curl -X POST https://tajikgpt.com/api/tj/images/generate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-tj-your-key" \
-d '{
"prompt": "A cat sitting on a windowsill",
"image_model": "tj-image-0.5"
}'