TJ-Image 1.0
TJ-Image 1.0 is a high-quality image generation model from TajikGPT by SoulLab. Generate images from text prompts in any language.
Model Details
| Property | Value |
|---|---|
| Developer | SoulLab |
| Model type | Text-to-Image |
| Output size | 1024x1024 |
| Languages | Russian, English, Tajik, and 50+ more |
| License | Proprietary |
How to Use
Python SDK
pip install tajikgpt
from tajikgpt import TajikGPT
client = TajikGPT(api_key="sk-tj-your-key")
response = client.images.generate(
prompt="A beautiful mountain landscape at sunset",
image_model="tj-image-1.0"
)
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 beautiful mountain landscape at sunset",
"image_model": "tj-image-1.0"
}'