Hướng dẫn Claude Code
Thiết lập model Claude của Flaq AI và khám phá kỹ năng Claude Code
Thử API Claude Opus 5.5 của Anthropic để xem xét tài liệu, tóm tắt và hỏi đáp tệp qua API Flaq AI ổn định, giá hợp lý, có phản hồi truyền trực tiếp cho ứng dụng.
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-opus-5.5-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
})
});
if (!response.ok) {
const errorBody = await response.json().catch(() => null);
throw new Error(errorBody?.error?.message ?? errorBody?.message ?? `HTTP ${response.status}`);
}
const reader = response.body.getReader();
const decoder = new TextDecoder();
let buffer = '';
let assistantText = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const frames = buffer.split(/\r?\n\r?\n/);
buffer = frames.pop() || '';
for (const frame of frames) {
const lines = frame.split(/\r?\n/).filter(Boolean);
let eventName = 'message';
const dataLines = [];
for (const line of lines) {
if (line.startsWith('event:')) {
eventName = line.slice(6).trim();
} else if (line.startsWith('data:')) {
dataLines.push(line.replace(/^data:\s*/, ''));
}
}
const raw = dataLines.join('\n').trim();
if (raw === '[DONE]') {
console.log('\nFinal text:', assistantText);
continue;
}
let payload;
try {
payload = JSON.parse(raw);
} catch {
continue;
}
if (eventName === 'error' || payload.error) {
const msg = payload.error?.message ?? payload.message ?? 'Chat request failed';
throw new Error(msg);
}
const delta = payload.choices?.[0]?.delta;
if (delta?.content) {
assistantText += delta.content;
console.log(assistantText);
}
}
}
import json
import requests
response = requests.post(
'https://api.flaq.ai/api/v1/chat/completions',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json',
},
json={
'model': 'claude-opus-5.5-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,
},
stream=True,
)
response.raise_for_status()
event_name = 'message'
assistant_text = ''
for raw_line in response.iter_lines(decode_unicode=True):
if not raw_line:
event_name = 'message'
continue
if raw_line.startswith('event:'):
event_name = raw_line.replace('event:', '', 1).strip()
continue
if raw_line.startswith('data:'):
raw_data = raw_line.replace('data:', '', 1).strip()
if raw_data == '[DONE]':
print('\nFinal text:', assistant_text)
continue
payload = json.loads(raw_data)
if event_name == 'error' or payload.get('error'):
error = payload.get('error') or payload
raise RuntimeError(error.get('message', 'Chat request failed'))
choices = payload.get('choices') or []
if choices:
delta = choices[0].get('delta') or {}
content = delta.get('content')
if content:
assistant_text += content
print(content, end='', flush=True)
curl -N -X POST "https://api.flaq.ai/api/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: text/event-stream" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-5.5-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
}'
| Tham số | Giá | Giá gốc | Giảm giá |
|---|
API Phân tích Tệp Claude Opus 5.5 đưa mô hình của Anthropic dành cho công việc tri thức kéo dài vào đánh giá tài liệu, trích xuất dữ liệu và rà soát bằng chứng trực quan trên Flaq AI. Với đầu vào văn bản, hình ảnh và tệp được hỗ trợ trong quy trình hội thoại, nhà phân tích, kỹ sư và nhà nghiên cứu có thể đặt câu hỏi về PDF, sơ đồ kỹ thuật và nhiều tài liệu nguồn, rồi đối chiếu bản tóm tắt nhận được với bản gốc.
Lưu ý Xác nhận quyền sử dụng tệp và kiểm tra thông tin trích xuất trước khi dựa vào đó để đưa ra quyết định pháp lý, tài chính, y tế, tuân thủ hoặc các quyết định có ảnh hưởng lớn khác. Bảo đảm tài liệu tải lên tuân thủ hướng dẫn an toàn của Anthropic và điều khoản Flaq AI.
Phân tích Tệp Claude Opus 5.5 so với Phân tích Tệp Claude Opus 5
Phân tích Tệp Claude Opus 5 hỗ trợ rà soát tài liệu trong dòng mô hình trước đó. Phân tích Tệp Claude Opus 5.5 đưa mô hình mới hơn vào công việc tri thức kéo dài; các nhóm nên so sánh chất lượng trích xuất trên tệp của mình trước khi chuyển đổi.
Phân tích Tệp Claude Opus 5.5 so với Phân tích Tệp GPT 6 Sol
Phân tích Tệp GPT 6 Sol cung cấp lựa chọn dựa trên OpenAI để hỏi đáp về tệp và trích xuất thông tin. Phân tích Tệp Claude Opus 5.5 cung cấp lựa chọn dựa trên Anthropic để rà soát tài liệu được cung cấp và giải thích phát hiện bằng ngôn ngữ tự nhiên.
Phân tích Tệp Claude Opus 5.5 so với Hiểu Tài liệu Gemini 3.5 Pro
Gemini 3.5 Pro phù hợp với các quy trình được xây dựng quanh công cụ đa phương thức của Google. Phân tích Tệp Claude Opus 5.5 phục vụ các nhóm muốn rà soát tài liệu và hình ảnh dựa trên Anthropic thông qua Flaq AI.
Phân tích Tệp Claude Opus 5.5 so với Công cụ Trích xuất Chuyên dụng cho Doanh nghiệp
Công cụ trích xuất dựa trên mẫu có thể hữu ích cho các trường lặp lại và bố cục cố định. Phân tích Tệp Claude Opus 5.5 còn hỗ trợ câu hỏi mở và tóm tắt khi cấu trúc tài liệu hoặc mục tiêu rà soát thay đổi.
Thiết lập model Claude của Flaq AI và khám phá kỹ năng Claude Code

Thiết lập model GPT của Flaq AI và khám phá kỹ năng Codex
Dùng mô hình LLM của Flaq AI trong Hermes Agent
Sử dụng GLM 5.2, Kimi K3 và DeepSeek v4 trong ZCode
Chạy DeepSeek Harness với các mô hình DeepSeek của Flaq AI
Kết nối các tác nhân AI với công cụ tạo hình ảnh và video của Flaq
Sử dụng GPT 6 Astra và Claude Fable 5.1 trong WorkBuddy