DEV Community

Cover image for Introducing TajikGPT — The First AI Platform from Tajikistan 🇹🇯
Muhammadjon Aminov
Muhammadjon Aminov

Posted on • Edited on

Introducing TajikGPT — The First AI Platform from Tajikistan 🇹🇯

Hey DEV community! 👋

I'm Muhammad, and I want to share something I've been building — TajikGPT, the first AI platform from Tajikistan, built for users worldwide.

What is TajikGPT?

TajikGPT is a full AI platform with proprietary LLM models (TJ-series), image generation, video generation, and a coding assistant — all accessible through a clean web interface and REST API.

🌐 Try it free: tajikgpt.com

Models

Model Description
TJ-1.0 General-purpose chat with reasoning
TJ-1.0 Mini Fast responses for simple tasks
TJ-1.0 Pro Advanced model with Vision & Web Search
TJ-1.0 Ultra Most powerful model
TJ-Coder Specialized for code generation
TJ-Image 1.0 High-quality image generation

For Developers

TajikGPT has a full REST API + official SDKs:

Python:


python
pip install tajikgpt

from tajikgpt import TajikGPT

client = TajikGPT(api_key="sk-tj-your-key")
response = client.chat.completions.create(
    model="tj-1.0",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

Node.js:

npm install tajikgpt
const { TajikGPT } = require("tajikgpt");
const client = new TajikGPT({ apiKey: "sk-tj-your-key" });

const response = await client.chat.completions.create({
  model: "tj-1.0",
  messages: [{ role: "user", content: "Hello!" }]
});
📖 Full API docs: tajikgpt.com/docs

Pricing
Free — $0, basic models, resets every 3 hours
Student — $3.99/mo (verified students)
Plus — $9.99/mo, all models + video generation
Pro — $29.99/mo, unlimited requests
Tech Stack
Built with pure PHP, vanilla JavaScript, and flat-file storage. No frameworks, no databases — runs on any shared hosting with cPanel. Sometimes simple is better. 😄

What's Next
More model improvements
Mobile apps
Ambassador program (open internationally)
I'd love to hear your feedback! Try it out at tajikgpt.com and let me know what you think.

Built with ❤️ by Soullab from Tajikistan 🇹🇯
Enter fullscreen mode Exit fullscreen mode

Top comments (0)