إنشاء إكمال محادثة
استخدم CometAPI POST /v1/chat/completions لإرسال محادثات متعددة الرسائل إلى نماذج الدردشة مع Streaming والتحكم في temperature وmax_tokens.
model؛ وتعمل معظم SDKs المتوافقة مع OpenAI عبر ضبط base_url على https://api.cometapi.com/v1.
أدوار الرسائل
إرسال إدخال Multimodal
تدعم العديد من النماذج الصور والصوت إلى جانب النص. لإرسال رسائل Multimodal، استخدم تنسيق المصفوفة لـcontent:
detail في عمق تحليل الصور:
low— أسرع، ويستخدم Tokens أقل (تكلفة ثابتة)high— تحليل مفصل، مع استهلاك Tokens أكثرauto— يقرر النموذج (الافتراضي)
بث الاستجابات
لتلقي ناتج تدريجي، اضبطstream على true. تُسلَّم الاستجابة على هيئة Server-Sent Events (SSE)، حيث يحتوي كل حدث على كائن chat.completion.chunk:
طلب ناتج منظّم
لإجبار النموذج على إرجاع JSON صالح يطابق مخططًا محددًا، استخدمresponse_format:
json_schema) أن يطابق الناتج مخططك تمامًا. أما وضع JSON Object (json_object) فيضمن فقط JSON صالحًا، ولا يفرض البنية.استدعاء الأدوات والدوال
لتمكين النموذج من استدعاء دوال خارجية، قدّم تعريفات الأدوات:finish_reason: "tool_calls"، وستحتوي المصفوفة message.tool_calls على اسم الدالة والوسيطات. بعد ذلك، نفّذ الدالة وأرسل النتيجة مرة أخرى كرسالة tool مع tool_call_id المطابق.
ملاحظات حول المزودين المختلفين
دعم المعلمات عبر المزودين
دعم المعلمات عبر المزودين
max_tokens مقابل max_completion_tokens
max_tokens مقابل max_completion_tokens
max_tokens— المعلمة القديمة. تعمل مع معظم النماذج، لكنها مهملة في نماذج OpenAI الأحدث.max_completion_tokens— المعلمة الموصى بها لنماذج GPT-4.1، وسلسلة GPT-5، ونماذج o-series. مطلوبة لنماذج الاستدلال لأنها تشمل Tokens الناتج وTokens الاستدلال معًا.
دور system مقابل developer
دور system مقابل developer
system— دور التعليمات التقليدي. يعمل مع جميع النماذج.developer— قُدّم مع نماذج o1. يوفّر اتباعًا أقوى للتعليمات في النماذج الأحدث. ويعود إلى سلوكsystemفي النماذج الأقدم.
developer للمشاريع الجديدة التي تستهدف نماذج GPT-4.1+ أو o-series.الأسئلة الشائعة
كيف تتعامل مع حدود المعدل؟
عند مواجهة429 Too Many Requests، نفّذ تراجعًا أسيًا:
كيف تحافظ على سياق المحادثة؟
ضمّن سجل المحادثة الكامل في مصفوفةmessages:
ماذا يعني finish_reason؟
كيف تتحكم في التكاليف؟
- استخدم
max_completion_tokensللحد من طول الناتج. - استخدم
gpt-5.6-terraلتحقيق توازن بين الذكاء والتكلفة، أوgpt-5.6-lunaلأحمال العمل الفعالة وعالية الحجم. - حافظ على Prompt موجزًا — وتجنب السياق المكرر.
- راقب استخدام Tokens في حقل الاستجابة
usage.
التفويضات
Bearer token authentication. Use your CometAPI key.
الجسم
Model ID to use for this request. See the Models page for current options.
"gpt-4.1"
A list of messages forming the conversation. Each message has a role (system, user, assistant, or developer) and content (text string or multimodal content array).
If true, partial response tokens are delivered incrementally via server-sent events (SSE). The stream ends with a data: [DONE] message.
Sampling temperature between 0 and 2. Higher values (e.g., 0.8) produce more random output; lower values (e.g., 0.2) make output more focused and deterministic. Recommended to adjust this or top_p, but not both.
0 <= x <= 2Nucleus sampling parameter. The model considers only the tokens whose cumulative probability reaches top_p. For example, 0.1 means only the top 10% probability tokens are considered. Recommended to adjust this or temperature, but not both.
0 <= x <= 1Number of completion choices to generate for each input message. Defaults to 1.
Up to 4 sequences where the API will stop generating further tokens. Can be a string or an array of strings.
Maximum number of tokens to generate in the completion. The total of input + output tokens is capped by the model's context length.
Number between -2.0 and 2.0. Positive values penalize tokens based on whether they have already appeared, encouraging the model to explore new topics.
-2 <= x <= 2Number between -2.0 and 2.0. Positive values penalize tokens proportionally to how often they have appeared, reducing verbatim repetition.
-2 <= x <= 2A JSON object mapping token IDs to bias values from -100 to 100. The bias is added to the model's logits before sampling. Values between -1 and 1 subtly adjust likelihood; -100 or 100 effectively ban or force selection of a token.
A unique identifier for your end-user. Helps with abuse detection and monitoring.
An upper bound for the number of tokens to generate, including visible output tokens and reasoning tokens. Use this instead of max_tokens for GPT-4.1+, GPT-5 series, and o-series models.
Specifies the output format. Use {"type": "json_object"} for JSON mode, or {"type": "json_schema", "json_schema": {...}} for strict structured output.
A list of tools the model may call. Currently supports function type tools.
Controls how the model selects tools. auto (default): model decides. none: no tools. required: must call a tool.
Whether to return log probabilities of the output tokens.
Number of most likely tokens to return at each position (0-20). Requires logprobs to be true.
0 <= x <= 20Controls the reasoning effort for o-series and GPT-5.1+ models.
low, medium, high Options for streaming. Only valid when stream is true.
Specifies the processing tier.
auto, default, flex, priority الاستجابة
Successful chat completion response.
Unique completion identifier.
"chatcmpl-abc123"
Object type. Non-streaming responses use chat.completion.
chat.completion "chat.completion"
Unix timestamp of creation.
1774412483
The model used (may include version suffix).
"gpt-5.4-2026-03-05"
Array of completion choices.
Token accounting for this request. Billing uses these counts.
Service tier that processed the request, when the provider reports one.
"default"
Provider backend configuration fingerprint, when the provider reports one.
"fp_490a4ad033"