TajikGPT-Team/tj-image-1.0
0
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
How to Use
Python SDK
pip install tajikgptfrom 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"
}'