GPT
GPT 文本

tdsang1999/gpt-5.6-sol

Model ID: tdsang1999/gpt-5.6-sol
模型系列
GPT
上下文
1,000,000
单次请求最低收费
0.00527 ¥
缓存命中率
75.9%
调用次数
4.3K
成功
99.1%
Tokens
87.15M
在线率 100.00%
24小时前现在
7天前现在

价格表

输入 / 100万tokens
0.243 ¥
输出 / 100万tokens
0.459 ¥
每次请求
0.014 ¥
单次请求最低收费
0.00527 ¥
Prompt缓存 75.9%
Cache读取 / 100万tokens
0.126 ¥
Cache写入 / 100万tokens
0.351 ¥

重复的prompt会被缓存 — 通过API调用时自动生效,重新读取比输入便宜很多。

价格变更历史

曾经适用的价格级别。标记为当前的价格为现在生效的价格。

以前 自 01/09/2026 - 22:54:40
输入 / 100万tokens0.181 ¥ 输出 / 100万tokens0.52 ¥ 每次请求0.014 ¥ Cache读取 / 100万tokens0.258 ¥ Cache写入 / 100万tokens0.73 ¥
以前 自 03/09/2026 - 01:39:27
输入 / 100万tokens0.181 ¥ 输出 / 100万tokens0.52 ¥ 每次请求0.014 ¥ 单次请求最低收费0.00527 ¥ Cache读取 / 100万tokens0.335 ¥ Cache写入 / 100万tokens0.95 ¥
当前 自 03/09/2026 - 15:20:22
输入 / 100万tokens0.243 ¥ 输出 / 100万tokens0.459 ¥ 每次请求0.014 ¥ 单次请求最低收费0.00527 ¥ Cache读取 / 100万tokens0.126 ¥ Cache写入 / 100万tokens0.351 ¥
成本估算
预估总计 0 ¥
平均 / 每次请求 0 ¥

按公布价格估算。有缓存时通常更便宜。

支持的Endpoint
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/tdsang1999/gpt-5.6-sol:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
方法 POST · application/json
身份验证 Bearer token(API key)
API类型 文本

技术说明

model gpt từ openai hàng thật, nên mọi người yên tâm về chất lượng

分享

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "tdsang1999/gpt-5.6-sol",
    "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": "tdsang1999/gpt-5.6-sol",
    "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": "tdsang1999/gpt-5.6-sol",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "tdsang1999/gpt-5.6-sol",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
}

快速试用

使用您的API key发送prompt — 消耗真实credit,结果实时流式返回。

评价与评论
2.5 / 2 条评价
正在加载评价...
联系支持
我们随时为您提供帮助