Views
No views yet
| Property | Value |
|---|---|
| Developer | SoulLab |
| Model type | Text-to-Image (Legacy) |
| Output size | 1024x1024 |
| Languages | Russian, English, Tajik, and 50+ more |
| License | Proprietary |
1from tajikgpt import TajikGPT
2
3client = TajikGPT(api_key="sk-tj-your-key")
4
5response = client.images.generate(
6 prompt="A cat sitting on a windowsill",
7 image_model="tj-image-0.5"
8)
9print(response.data[0].url)1curl -X POST https://tajikgpt.com/api/tj/images/generate \
2 -H "Content-Type: application/json" \
3 -H "Authorization: Bearer sk-tj-your-key" \
4 -d '{
5 "prompt": "A cat sitting on a windowsill",
6 "image_model": "tj-image-0.5"
7 }'