CoolFace
Modelpublic

TajikGPT-Team/tj-image-1.0

sourceHugging Faceotherupdated 7mo agoView on Hugging Face
0likes
Model Card

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

PropertyValue
DeveloperSoulLab
Model typeText-to-Image
Output size1024x1024
LanguagesRussian, English, Tajik, and 50+ more
LicenseProprietary

How to Use

Python SDK

bash
pip install tajikgpt
python
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

bash
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"
  }'

Links