DEV Community

Muhammadjon Aminov
Muhammadjon Aminov

Posted on

TJ-1.0 vs GPT-4o vs Gemini: Tested on Tajik, Russian & English

TJ-1.0 vs GPT-4o vs Gemini: We tested all three on Tajik, Russian & English

Hi, I'm Muhammadjon — developer at SoulLab.

We built TajikGPT — the first AI platform from Central Asia. One question we get constantly:
"How does TJ-1.0 compare to GPT-4o and Gemini?"

So we ran honest tests. Here's what we found — including where we lose.


Why this matters

Central Asia has 15+ million Tajik speakers. No major AI lab has properly trained on Tajik language data. GPT-4o and Gemini treat Tajik as an afterthought — they translate from Russian rather than understanding the language natively.

We decided to fix that.


Tajik Language Results

Task TJ-1.0 GPT-4o Gemini 2.0 Flash
Comprehension ✅ Best Acceptable Weak
Translation (Tajik ↔ Russian) ✅ Best Partial errors Partial errors
Creative writing ✅ Best Generic Generic
Instruction following ✅ Best Misses context Misses context

GPT-4o and Gemini miss Tajik morphology, cultural context, and regional expressions. TJ-1.0 wins clearly here.


Russian & English

Honest take: all three are comparable on Russian and English. GPT-4o has marginal advantages in creative tasks — we acknowledge that openly.


Pricing Comparison

Plan TajikGPT GPT-4o Gemini 2.0 Flash
Free tier ✅ Yes, no card Limited Limited
Entry paid $3.99/mo (Student) $20/mo $20/mo
Plus $9.99/mo
Pro / Unlimited $29.99/mo $200/mo $20/mo

5-10x cheaper than OpenAI for Tajik and Russian workloads.


Available Models

Model Free Best for
tj-0.5 ✅ 30/3h Simple & fast tasks
tj-1.0-mini ✅ 10/3h Everyday tasks
tj-1.0 ✅ 10/3h General purpose
tj-1.0-pro Student+ Vision + Web Search
tj-1.0-ultra Student+ Max quality
tj-coder ✅ 100/h Code generation
tj-image-1.0 ✅ 20/3h Image generation

Quick Start — Python


bash
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": "Салом! Ба ман дар бораи зеҳни сунъӣ нақл кун."}
    ]
)

print(response.choices[0].message.content)
Quick Start — Node.js
npm install tajikgpt
import { TajikGPT } from "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!" }]
});

console.log(response.choices[0].message.content);
Links
Platform:
🌐 Website: https://tajikgpt.com
💰 Pricing: https://tajikgpt.com/pricing
📖 API Docs: https://tajikgpt.com/docs
❓ FAQ: https://tajikgpt.com/faq
🤝 Ambassador program (20% commission): https://tajikgpt.com/ambassador
Apps:
📱 Android: https://tajikgpt.com/android
💻 Desktop (Windows/macOS): https://tajikgpt.com/download
HuggingFace:
🤗 Models: https://huggingface.co/TajikGPT-Team
🚀 Live demo: https://huggingface.co/spaces/TajikGPT-Team/tajikgpt
Social:
🐦 X (Twitter): https://x.com/tajikgpt
▶️ YouTube: https://youtube.com/@tajikgpt
📘 Facebook: https://facebook.com/tajikgpt
📸 Instagram: https://instagram.com/tajikgpt
Support: https://soullab.space/support
Built by SoulLab — Tajikistan
First AI platform from Central Asia
Enter fullscreen mode Exit fullscreen mode

Top comments (0)