Views
No views yet
--reasoning-parser solar_open to have the chain of thought returned in a separate field. The reasoning depth is controllable per request through reasoning_effort ("low", "medium", "high"; default "high").solar_open tool-call parser.solar_open reasoning parser so the chain of thought is
returned in a separate field:1furiosa-llm serve furiosa-ai/Solar-Open-100B-NVFP4A16 \
2 --reasoning-parser solar_opensolar_open tool-call parser;
keep --reasoning-parser solar_open so thinking is still parsed into its own
field:1furiosa-llm serve furiosa-ai/Solar-Open-100B-NVFP4A16 \
2 --reasoning-parser solar_open \
3 --enable-auto-tool-choice \
4 --tool-call-parser solar_open1INFO: Started server process [27507]
2INFO: Waiting for application startup.
3INFO: Application startup complete.
4INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)curl:1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "furiosa-ai/Solar-Open-100B-NVFP4A16",
5 "messages": [{"role": "user", "content": "What is the capital of France?"}]
6 }' \
7 | python -m json.tool--reasoning-parser solar_open, Solar-Open returns its reasoning separately
from the final answer:response.choices[].message.reasoning (non-streaming)response.choices[].delta.reasoning (streaming)1from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
4
5response = client.chat.completions.create(
6 model="furiosa-ai/Solar-Open-100B-NVFP4A16",
7 messages=[{"role": "user", "content": "How many r's are in 'strawberry'?"}],
8)
9
10print("Reasoning:", response.choices[0].message.reasoning)
11print("Answer:", response.choices[0].message.content)Note: Thereasoningfield is not part of the OpenAI API specification but is a widely followed convention (the OpenAI Agents SDK, vLLM, and others). It appears only in responses that contain reasoning content; accessing it otherwise raises anAttributeError.
reasoning_effort parameter ("low", "medium", or "high";
default "high"). Solar-Open's chat template maps this to its thinking behavior:
"high" and "medium" produce a chain of thought — with "high" allowed a larger
reasoning-token budget than "medium" — while "low" (and "minimal") prefill an
empty thinking block so the model skips reasoning and answers directly:1response = client.chat.completions.create(
2 model="furiosa-ai/Solar-Open-100B-NVFP4A16",
3 messages=[{"role": "user", "content": "How many r's are in 'strawberry'?"}],
4 extra_body={"reasoning_effort": "high"},
5)
6
7print("Reasoning:", response.choices[0].message.reasoning)
8print("Answer:", response.choices[0].message.content)--enable-auto-tool-choice --tool-call-parser solar_open (see
Launch the server), pass tools in the request and let the
model decide when to call them. See the
Tool Calling guide
for a complete client example and details on tool-choice options.furiosa-llm serve) — full OpenAI-compatible API reference and serving options