Pricing structure
Pricing structure on the Ahur platform
The Ahur platform offers three different pricing models to cover three different kinds of need. Each one has its own advantages and its own best-fit use cases.
1. Ahur's own models
The AI models built in-house by Ahur are priced on token consumption. They're a good fit for anyone looking for strong value for money.
Ahur model pricing
| Model | Input price (per 1K tokens) | Output price (per 1K tokens) | Standout trait |
|---|---|---|---|
| Ahur Mini | 0.0005 Toman | 0.001 Toman | Fast and efficient |
| Ahur Base | 0.001 Toman | 0.002 Toman | Balanced quality and cost |
| Ahur Pro | 0.002 Toman | 0.004 Toman | High quality |
| Ahur Enterprise | 0.005 Toman | 0.010 Toman | Professional and specialized |
def calculate_ahur_cost(input_tokens, output_tokens, model="ahur-base"):
pricing = {
"ahur-mini": (0.0005, 0.001),
"ahur-base": (0.001, 0.002),
"ahur-pro": (0.002, 0.004),
"ahur-enterprise": (0.005, 0.010)
}
input_cost = (input_tokens / 1000) * pricing[model][0]
output_cost = (output_tokens / 1000) * pricing[model][1]
return input_cost + output_cost
# a worked example
cost = calculate_ahur_cost(1000, 500, "ahur-pro")
print(f"Total cost: {cost} Toman")
Advantages of the Ahur models
- Competitive pricing: cheaper than comparable models from abroad
- Persian support: tuned for the Persian language and culture
- Privacy: your data is never processed outside the country
- Local support: a Persian-speaking support team
2. Free models with limits
If you're just getting started or working on something small, there are free models available.
Free plans
| Free model | Daily limit | Monthly limit | Use cases |
|---|---|---|---|
| Ahur Lite | 1,000 tokens | 30,000 tokens | Testing and learning |
| Community Model | 5,000 tokens | 150,000 tokens | Personal projects |
| Developer Preview | 10,000 tokens | 300,000 tokens | Development and testing |
Limits on the free models
- Maximum response length: 500 tokens per request
- Limited API access: suitable for testing and development
- Lower priority: requests are processed with a delay during peak times
- No advanced capabilities: no file analysis, no long-form summarization, and so on
3. Third-party models at list price
For access to the well-known global models, the price is exactly what the original provider charges.
Third-party model pricing
| Model | Provider | Input price (USD/1K tokens) | Output price (USD/1K tokens) | Price on Ahur |
|---|---|---|---|---|
| GPT-4 | OpenAI | $0.03 | $0.06 | $0.03 / $0.06 |
| GPT-3.5-Turbo | OpenAI | $0.001 | $0.002 | $0.001 / $0.002 |
| Claude-3-Sonnet | Anthropic | $0.015 | $0.075 | $0.015 / $0.075 |
| Claude-3-Haiku | Anthropic | $0.00025 | $0.00125 | $0.00025 / $0.00125 |
| Gemini-Pro | $0.0005 | $0.0015 | $0.0005 / $0.0015 | |
| Grok | xAI | $0.02 | $0.06 | $0.02 / $0.06 |
| DeepSeek-Chat | DeepSeek | $0.001 | $0.002 | $0.001 / $0.002 |
Why use third-party models through Ahur
- One unified bill: all of your usage on a single invoice
- Full Persian support: Persian interface and documentation
- Easy access: one platform for every model
- Local payment: pay from inside Iran
A full model comparison
Comparison table
| Feature | Ahur models | Free models | Third-party models |
|---|---|---|---|
| Cost | Low to moderate | Free | Moderate to high |
| Persian quality | Excellent | Good | Moderate |
| Privacy | High | Moderate | Low |
| Speed | High | Moderate | Moderate |
| Customizable | Yes | No | No |
| Local support | 24/7 | Limited | None |
Which model should you pick?
- Use the free models to try things out
- Start with Ahur Lite
- Move to a paid model once you have a feel for it
- The Ahur models perform best here
- Ahur Pro is ideal for professional workloads
- Lower cost and higher quality than models from abroad
- Claude-3 for complex analysis
- GPT-4 for specialized content generation
- Combine models for better results
- Ahur Base for generating Persian code
- GPT-3.5 for English documentation
- DeepSeek for cost-sensitive workloads
Things worth knowing
Optimizing your costs
- Pick the right model: choose the most appropriate model for each job
- Manage your tokens: keep prompts concise and efficient to bring costs down
- Cache responses: use a cache for repeated requests
- Monitor consumption: review your usage regularly
Cost calculator
function calculateTotalCost(model, inputTokens, outputTokens, monthlyUsage) {
const pricing = {
'ahur-base': { input: 0.001, output: 0.002 },
'ahur-pro': { input: 0.002, output: 0.004 },
'gpt-4': { input: 0.03, output: 0.06 },
'claude-3': { input: 0.015, output: 0.075 }
};
const costPerRequest = (inputTokens / 1000) * pricing[model].input +
(outputTokens / 1000) * pricing[model].output;
return costPerRequest * monthlyUsage;
}
// example: working out the monthly cost
monthlyCost = calculateTotalCost('ahur-pro', 1000, 500, 100);
console.log(`Monthly cost: ${monthlyCost} Toman`);
Frequently asked questions
Can I switch between models?
Yes. You can switch between models at any time. Costs are calculated from your actual consumption on each model.
Are there any extra charges?
No. Charges are based purely on token consumption. There are no hidden fees and no mandatory monthly subscription.
Do I need a VPN for the third-party models?
No. Through the Ahur platform you can reach every third-party model without a VPN.
To start using the Ahur models and see exact rates, head to the pricing page.