AI 모델 API완성
기본 OpenAI 형식
주어진 프롬프트를 기반으로 텍스트 완성 만들기
인증
BearerAuth
AuthorizationBearer <token>
Bearer Token 인증을 사용합니다.
형식: Authorization: Bearer sk-xxxxxx
In: header
요청 본문
application/json
model*string
prompt*string|
max_tokens?integer
temperature?number
top_p?number
n?integer
stream?boolean
stop?string|
suffix?string
echo?boolean
curl -X POST "https://us-api.tokenhub.com/v1/completions" \ -H "Content-Type: application/json" \ -d '{ "model": "string", "prompt": "string" }'{
"id": "string",
"object": "text_completion",
"created": 0,
"model": "string",
"choices": [
{
"text": "string",
"index": 0,
"finish_reason": "string"
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0,
"prompt_tokens_details": {
"cached_tokens": 0,
"text_tokens": 0,
"audio_tokens": 0,
"image_tokens": 0
},
"completion_tokens_details": {
"text_tokens": 0,
"audio_tokens": 0,
"reasoning_tokens": 0
}
}
}응답 본문
application/json
마지막 업데이트