Can u change DeepSeek-V3.2 into a non reasoning model
@antoniopogiqo welcome to the community . You just need to pass reasoning false .
Here is a curl example:
curl -H "Authorization: Bearer $SAMBANOVA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"stream": true,
"model": "DeepSeek-V3.2",
"reasoning": false,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant"
},
{
"role": "user",
"content": "Hello!"
}
]
}' \
-X POST https://api.sambanova.ai/v1/chat/completions
data: {"choices":[{"delta":{"content":"Hello","role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1776264275,"id":"4426e190-e772-4f1c-ba89-be795bfa21d2","model":"DeepSeek-V3.2","object":"chat.completion.chunk","system_fingerprint":"fastcoe"}
data: {"choices":[{"delta":{"content":"! How can I assist you today? 😊","role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1776264275,"id":"4426e190-e772-4f1c-ba89-be795bfa21d2","model":"DeepSeek-V3.2","object":"chat.completion.chunk","system_fingerprint":"fastcoe"}
data: {"choices":[{"delta":{"content":""},"finish_reason":"stop","index":0,"logprobs":null}],"created":1776264275,"id":"4426e190-e772-4f1c-ba89-be795bfa21d2","model":"DeepSeek-V3.2","object":"chat.completion.chunk","system_fingerprint":"fastcoe"}
data: [DONE]