Lightweight multimodal model with native audio input/output capabilities. Optimized for voice-based interactions and audio processing tasks.
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 1,200 | $1.20 |
| Output Tokens | 4,800 | $4.80 |
* 1 credit β $0.001 (actual charges may vary based on usage)
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
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects (supports audio content) |
temperature | float | No | 1.0 | Sampling temperature (0-2) |
max_tokens | integer | No | - | Maximum tokens in response |
Text-based interaction with audio model
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