GPT
GPT Text

anhyeu00m/gpt-5.6-terra

Model ID: anhyeu00m/gpt-5.6-terra
साइन इन सेटअप गाइड
मॉडल परिवार
GPT
Context
1,000,000
न्यूनतम शुल्क / अनुरोध
0.05 ₹
Cache hit दर
0.2%
अनुरोध
3
सफलता
66.7%
Tokens
2.4K
अपटाइम 100.00%
24 घंटे पहलेअभी
7 दिन पहलेअभी

मूल्य निर्धारण

इनपुट / 1M tokens
12.5 ₹
आउटपुट / 1M tokens
20 ₹
न्यूनतम शुल्क / अनुरोध
0.05 ₹
Prompt Cache 0.2%
Cache पढ़ना / 1M tokens
1.5 ₹
Cache लिखना / 1M tokens
12.5 ₹

दोहराए गए prompts कैश हो जाते हैं — read, input से कहीं सस्ता है, API के माध्यम से स्वचालित रूप से लागू होता है।

मूल्य इतिहास

पहले लागू किए गए मूल्य स्तर। "current" चिह्नित पंक्ति वर्तमान मूल्य है।

वर्तमान से 13/09/2026 - 21:06:54
इनपुट / 1M tokens12.5 ₹ आउटपुट / 1M tokens20 ₹ न्यूनतम शुल्क / अनुरोध0.05 ₹ Cache पढ़ना / 1M tokens1.5 ₹ Cache लिखना / 1M tokens12.5 ₹
लागत अनुमानक
अनुमानित कुल 0 ₹
औसत / अनुरोध 0 ₹

सूची मूल्यों पर आधारित अनुमान। Caching आमतौर पर इसे सस्ता बनाती है।

समर्थित एंडपॉइंट
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/anhyeu00m/gpt-5.6-terra:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
विधि POST · application/json
प्रमाणीकरण Bearer token (API key)
API किस्में Text

साझा करें

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "anhyeu00m/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "नमस्ते, आप कौन हैं?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "anhyeu00m/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "नमस्ते, आप कौन हैं?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "anhyeu00m/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "नमस्ते, आप कौन हैं?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "anhyeu00m/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "नमस्ते, आप कौन हैं?"
        }
    ]
}

आज़माएँ

अपनी API कुंजी के साथ prompt भेजें — वास्तविक क्रेडिट उपयोग होते हैं, परिणाम तुरंत स्ट्रीम होता है।

समीक्षाएँ और टिप्पणियाँ
4.0 / 1 समीक्षाएँ
समीक्षाएँ लोड हो रही हैं...
सहायता से संपर्क करें
हम हमेशा आपकी मदद के लिए तैयार हैं