Completions(舊版)
採用舊版 Completions 協議格式。新程式碼請使用 Chat Completions;保留此介面僅為向下相容遺留整合。
POST https://wrouter.ai/v1/completions請求體
| 引數 | 型別 | 必填 | 說明 |
|---|---|---|---|
model | string | ✓ | 例如 gpt-3.5-turbo-instruct、davinci-002 |
prompt | string | string[] | ✓ | 輸入文本 |
max_tokens | integer | ||
temperature | number | ||
top_p | number | ||
n | integer | ||
stream | boolean | ||
stop | string | string[] | ||
suffix | string | ||
echo | boolean |
響應
json
{
"id": "cmpl-xxx",
"object": "text_completion",
"created": 1718000000,
"model": "gpt-3.5-turbo-instruct",
"choices": [{"text": "...", "index": 0, "finish_reason": "stop"}],
"usage": {"prompt_tokens": 5, "completion_tokens": 7, "total_tokens": 12}
}示例
bash
curl https://wrouter.ai/v1/completions \
-H "Authorization: Bearer $WROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-3.5-turbo-instruct","prompt":"hello, ","max_tokens":16}'