Claude Fable 5.1 API
เอกสารอ้างอิง API ฉบับสมบูรณ์สำหรับโมเดล LLM Claude Fable 5.1 ที่ให้บริการโดย Anthropic
รุ่นของโมเดล {#}
API นี้รองรับโมเดล Claude Fable 5.1 สามรุ่น:
เปรียบเทียบโดยสรุป
Claude Fable 5.1 Text to Text
เอนด์พอยต์
POST /api/v1/chat/completions
พารามิเตอร์คำขอ
จำเป็น
การรองรับข้อความ
ไม่บังคับ
ตัวอย่างคำขอ
const response = await fetch('https://api.flaq.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'claude-fable-5.1-text-to-text',
messages: [
{
role: 'user',
content: 'Draft a technical decision memo for this architecture choice.'
}
],
stream: true,
max_tokens: 2048
})
});
Claude Fable 5.1 Web Search
เอนด์พอยต์
POST /api/v1/chat/completions
พารามิเตอร์คำขอ
จำเป็น
การรองรับข้อความ
ไม่บังคับ
ตัวอย่างคำขอ
const response = await fetch('https://api.flaq.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'claude-fable-5.1-web-search',
messages: [
{
role: 'user',
content: 'Find the latest public information about Claude Fable 5.1 and summarize it for a product brief.'
}
],
stream: true,
max_tokens: 2048
})
});
Claude Fable 5.1 File Analysis
เอนด์พอยต์
POST /api/v1/chat/completions
พารามิเตอร์คำขอ
จำเป็น
การรองรับข้อความ
ไม่บังคับ
ตัวอย่างคำขอ
const response = await fetch('https://api.flaq.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'claude-fable-5.1-file-analysis',
messages: [
{
role: 'user',
content: [
{ type: 'text', text: 'Summarize this file and extract the key risks.' },
{
type: 'file',
file: {
filename: 'demo.pdf',
file_data: 'https://example.com/demo.pdf'
}
}
]
}
],
stream: true,
max_tokens: 4096
})
});
รูปแบบการตอบกลับ
โมเดล LLM Claude Fable 5.1 ส่งคืนผลการสร้างข้อความในรูปแบบที่เข้ากันได้กับ OpenAI เมื่อใช้ stream: true การตอบกลับจะเป็นเหตุการณ์ที่ส่งจากเซิร์ฟเวอร์ (SSE) ส่วน stream: false จะตอบกลับเป็นออบเจ็กต์ JSON เดียว
การตอบกลับเมื่อสำเร็จ
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-fable-5.1-file-analysis","choices":[{"index":0,"delta":{"role":"assistant"},"finish_reason":null}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-fable-5.1-file-analysis","choices":[{"index":0,"delta":{"content":"Here is a concise summary"},"finish_reason":null}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-fable-5.1-file-analysis","choices":[{"index":0,"delta":{},"finish_reason":"stop"}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-fable-5.1-file-analysis","choices":[],"usage":{"prompt_tokens":12,"completion_tokens":8,"total_tokens":20}}
data: [DONE]
การตอบกลับเมื่อเกิดข้อผิดพลาด
event: error
data: {"error":{"message":"API requests too frequent, exceeding rate limit","type":"rate_limit_error","code":"1302","param":null}}
แนวทางปฏิบัติที่แนะนำ
- ใช้ข้อความที่มีโครงสร้าง: ส่งประวัติการสนทนาผ่าน
messages[] แทนการรวมบริบททั้งหมดไว้ในพรอมป์ต์เดียว
- เลือกรุ่นโมเดลให้เหมาะสม: ใช้ Text to Text สำหรับการให้เหตุผลจากข้อความล้วน ใช้ Web Search เมื่อต้องการบริบทออนไลน์ล่าสุด และใช้ File Analysis เมื่อต้องใช้ไฟล์หรือรูปภาพ
- ประมวลผลเหตุการณ์ SSE: ต่อเนื้อหา
choices[0].delta.content เพื่อแสดงผลแบบสตรีม และถือว่า data: [DONE] หมายถึงการทำงานเสร็จสมบูรณ์
- ส่งเฉพาะอินพุตที่รองรับ: อย่าส่งส่วนไฟล์หรือรูปภาพไปยังเส้นทาง Text to Text หรือ Web Search