GPT
GPT ข้อความ

levuphong2909/gpt-5.6-sol

Model ID: levuphong2909/gpt-5.6-sol
ตระกูล
GPT
บริบท
ไม่ระบุ
ค่าใช้จ่ายขั้นต่ำ / คำขอ
0.0163 ฿
อัตรา Cache hit
80.6%
คำขอ
68.6K
สำเร็จ
97.5%
โทเค็น
7.17B
เวลาใช้งาน 24.85%
24 ชม. ที่แล้วตอนนี้
7 วันที่แล้วตอนนี้

ราคา

Input / 1M token
1.469 ฿
Output / 1M token
3.265 ฿
ค่าใช้จ่ายขั้นต่ำ / คำขอ
0.0163 ฿
Prompt Cache 80.6%
Cache read / 1M token
1.175 ฿
Cache write / 1M token
1.371 ฿

Prompt ที่ซ้ำกันถูกแคชไว้ — การอ่านราคาถูกกว่า input มาก ใช้โดยอัตโนมัติผ่าน API

ประวัติราคา

ระดับราคาที่เคยใช้ แถวที่ระบุ "ปัจจุบัน" คือราคาจริง

อดีต ตั้งแต่ 29/07/2026 - 08:18:24
Input / 1M token1.632 ฿ Output / 1M token4.081 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0204 ฿ Cache read / 1M token1.088 ฿ Cache write / 1M token1.36 ฿
อดีต ตั้งแต่ 03/08/2026 - 01:07:33
Input / 1M token1.567 ฿ Output / 1M token3.918 ฿ Cache read / 1M token1.306 ฿ Cache write / 1M token1.632 ฿
อดีต ตั้งแต่ 03/08/2026 - 01:25:10
Input / 1M token1.567 ฿ Output / 1M token3.918 ฿
อดีต ตั้งแต่ 04/08/2026 - 20:06:26
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿
อดีต ตั้งแต่ 04/08/2026 - 20:34:30
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ Cache read / 1M token0.979 ฿ Cache write / 1M token1.142 ฿
อดีต ตั้งแต่ 04/08/2026 - 21:55:26
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0261 ฿
อดีต ตั้งแต่ 04/08/2026 - 22:25:49
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0261 ฿ Cache read / 1M token0.979 ฿ Cache write / 1M token1.142 ฿
อดีต ตั้งแต่ 07/08/2026 - 20:27:42
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0163 ฿ Cache read / 1M token0.979 ฿ Cache write / 1M token1.142 ฿
อดีต ตั้งแต่ 07/08/2026 - 21:16:10
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0163 ฿
ปัจจุบัน ตั้งแต่ 17/08/2026 - 14:06:07
Input / 1M token1.469 ฿ Output / 1M token3.265 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0163 ฿ Cache read / 1M token1.175 ฿ Cache write / 1M token1.371 ฿

… บวก 1 ระดับราคาก่อนหน้า

ตัวประมาณค่าใช้จ่าย
ยอดรวมโดยประมาณ 0 ฿
เฉลี่ย / คำขอ 0 ฿

ประมาณการจากราคาที่แสดงไว้ การใช้ cache มักจะทำให้ถูกกว่า

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/levuphong2909/gpt-5.6-sol:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
เมธอด POST · application/json
การยืนยันตัวตน Bearer token (คีย์ API)
ขีดจำกัดอัตรา 100 req/min
ประเภท API ข้อความ

แบ่งปัน

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "levuphong2909/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": "levuphong2909/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": "levuphong2909/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": "levuphong2909/gpt-5.6-sol",
    "messages": [
        {
            "role": "user",
            "content": "สวัสดี คุณคือใคร?"
        }
    ]
}

ลองใช้

ส่ง prompt ด้วยคีย์ API ของคุณ — ใช้เครดิตจริง สตรีมกลับทันที

รีวิวและความคิดเห็น
2.9 / 12 รีวิว
กำลังโหลดรีวิว...
ติดต่อฝ่ายสนับสนุน
เราพร้อมช่วยเหลือคุณเสมอ