curl --request POST \
--url https://http.llm.model-cluster.on-prem.clusters.yotta-uat.cluster.s9t.link/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'id: <id>' \
--data '
{
"model": "deepseek-v3",
"messages": [
{
"role": "user",
"content": "How do I delete a team member from an org given user and org tables?"
}
],
"stream": true,
"max_tokens": 1024,
"temperature": 0.7,
"top_p": 1
}
'{
"id": "chatcmpl-deepseek-abc123",
"object": "chat.completion",
"created": 1699014493,
"model": "deepseek-v3",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "To delete a team member from an organization, you'll need to handle the relationship between user and org tables. Here's a typical approach:\n\n```sql\n-- Option 1: Delete from junction table\nDELETE FROM user_org_memberships \nWHERE user_id = ? AND org_id = ?;\n\n-- Option 2: Update user record\nUPDATE users \nSET org_id = NULL \nWHERE user_id = ? AND org_id = ?;\n```\n\nThe exact implementation depends on your database schema design."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 18,
"completion_tokens": 156,
"total_tokens": 174,
"reasoning_tokens": 0
},
"system_fingerprint": "deepseek-v3-20241201"
}DeepSeek V3
Create a chat completion for given messages with streaming support using DeepSeek’s V3 model, optimized for reasoning, mathematics, coding, and complex analytical tasks
curl --request POST \
--url https://http.llm.model-cluster.on-prem.clusters.yotta-uat.cluster.s9t.link/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'id: <id>' \
--data '
{
"model": "deepseek-v3",
"messages": [
{
"role": "user",
"content": "How do I delete a team member from an org given user and org tables?"
}
],
"stream": true,
"max_tokens": 1024,
"temperature": 0.7,
"top_p": 1
}
'{
"id": "chatcmpl-deepseek-abc123",
"object": "chat.completion",
"created": 1699014493,
"model": "deepseek-v3",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "To delete a team member from an organization, you'll need to handle the relationship between user and org tables. Here's a typical approach:\n\n```sql\n-- Option 1: Delete from junction table\nDELETE FROM user_org_memberships \nWHERE user_id = ? AND org_id = ?;\n\n-- Option 2: Update user record\nUPDATE users \nSET org_id = NULL \nWHERE user_id = ? AND org_id = ?;\n```\n\nThe exact implementation depends on your database schema design."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 18,
"completion_tokens": 156,
"total_tokens": 174,
"reasoning_tokens": 0
},
"system_fingerprint": "deepseek-v3-20241201"
}Authorizations
JWT token for authentication - Use your API token as the Bearer token
Headers
Model UUID for the request (DeepSeek V3 model identifier)
Body
Array of messages in the conversation
Show child attributes
Show child attributes
Model identifier for DeepSeek V3
deepseek-v3 Whether to stream the response
Sampling temperature (0.0 to 2.0). Lower values for analytical tasks, higher for creative work
0 <= x <= 2Maximum number of tokens to generate
1 <= x <= 65536Nucleus sampling parameter for controlling response diversity
0 <= x <= 1Top-k sampling parameter for vocabulary selection
1 <= x <= 100Sequences where the API will stop generating further tokens
4Penalty for frequent tokens to reduce repetition
-2 <= x <= 2Penalty for new tokens to encourage topic diversity
-2 <= x <= 2Penalty for repeating tokens (DeepSeek-specific parameter)
0.1 <= x <= 2Whether to use sampling for generation
Random seed for reproducible outputs
Enable enhanced reasoning capabilities for complex problems
Response
Successful chat completion
- Option 1
- Option 2
Response for non-streaming chat completion
Unique identifier for the completion
"chatcmpl-deepseek-abc123"
Object type
chat.completion "chat.completion"
Unix timestamp of when the completion was created
1699014493
The model used for completion
"deepseek-v3"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
System fingerprint for the model version
"deepseek-v3-20241201"

