Buat Text Completion
POST/v1/complete
[Legacy] Buat Text Completion.
Text Completions API adalah API legacy. Kami merekomendasikan penggunaan Messages API untuk ke depannya.
Model dan fitur mendatang tidak akan kompatibel dengan Text Completions. Lihat panduan migrasi kami untuk panduan bermigrasi dari Text Completions ke Messages.
Headers
Body
Returns
Buat Text Completion
curl https://api.anthropic.com/v1/complete \
-H 'Content-Type: application/json' \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY" \
--max-time 600 \
-d '{
"max_tokens_to_sample": 256,
"model": "claude-2.1",
"prompt": "\n\nHuman: Hello, world!\n\nAssistant:",
"temperature": 1,
"top_k": 5,
"top_p": 0.7
}'Response 200
{
"id": "compl_018CKm6gsux7P8yMcwZbeCPw",
"completion": " Hello! My name is Claude.",
"model": "claude-2.1",
"stop_reason": "stop_sequence",
"type": "completion"
}Returns Examples
Response 200
{
"id": "compl_018CKm6gsux7P8yMcwZbeCPw",
"completion": " Hello! My name is Claude.",
"model": "claude-2.1",
"stop_reason": "stop_sequence",
"type": "completion"
}