네이티브 오디오 입출력 기능을 갖춘 경량 멀티모달 모델입니다. 음성 기반 상호작용 및 오디오 처리 작업에 최적화되어 있습니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 1,200 | $1.20 |
| 출력 토큰 | 4,800 | $4.80 |
* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-audio-mini",
"messages": [
{
"role": "user",
"content": "Describe the key differences between spoken and written language."
}
],
"max_tokens": 1000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 (오디오 콘텐츠 지원) |
temperature | float | No | 1.0 | 샘플링 온도 (0-2) |
max_tokens | integer | No | - | 응답의 최대 토큰 수 |
오디오 모델과의 텍스트 기반 상호작용
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-audio-mini",
"messages": [
{
"role": "user",
"content": "Describe the key differences between spoken and written language."
}
],
"max_tokens": 1000
}'POST /llm/openai/v1/chat/completions