Back to ModelsBack to Models
Solar Open 100B
Upstage22/ 57
Intelligence Score
Intelligence
22
#121 of 212 (top 57%)
Speed
N/A
Not measured
Price
Free
per M tokens
Context Window
128K
tokens
Latency: N/A
Score Breakdown
Quality Score37%
Speed Score0%
Cost Score100%
Similar Models
INTELLECT-3
Prime Intellect
22intelligence
Devstral 2
Mistral
22intelligence
Gemini 2.5 Flash-Lite (Sep)
Google
22intelligence
K-EXAONE
LG AI Research
23intelligence
GPT-5.4 mini
OpenAI
23intelligence
Use This Model
Claude Code
claude --model solar-open-100b-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "solar-open-100b-reasoning",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("solar-open-100b-reasoning"),
prompt: "Hello",
});