# GPT-5.6 Sol - Core.Today AI API > The flagship tier of OpenAI's GPT-5.6 family (GA July 2026). Sol delivers the strongest reasoning, coding, and multimodal performance of the generation with a 1M token context window, 128K max output tokens, and cached inputs at a 90% discount. - **Provider**: OpenAI - **Model ID**: gpt-5.6-sol - **Category**: LLM - **Credits**: 5 per request - **Speed**: Fast - **Quality**: Ultra ## Model Specifications - **Context Window**: 1M tokens - **Max Output**: 128K tokens - **Training Cutoff**: 2026-02 - **Supported Formats**: text, json, markdown - **Compatible SDK**: OpenAI ### Capabilities - Vision (image input) - Function Calling - Streaming - JSON Mode - System Prompt ### Token Pricing (per 1M tokens) - **Input Tokens**: 9,290 credits ($6.19) - **Output Tokens**: 55,740 credits ($37.16) - **Cached Tokens**: 929 credits ($0.62) ## Features - Flagship tier of the GPT-5.6 family - 1M token context window - 128K max output tokens - Knowledge cutoff: February 2026 - Cached input pricing (90% discount) - Adjustable reasoning effort - Function calling and native vision support ## Use Cases - Frontier reasoning and analysis - Complex agentic workflows with tool use - Large-codebase understanding and refactoring - Long document processing up to 1M tokens - Repeated context with cached inputs (RAG, codebases) ## API Endpoint Base URL: https://api.core.today Endpoint: POST /llm/openai/v1/chat/completions ## Authentication Header: Authorization: Bearer YOUR_API_KEY Note: LLM endpoints use OpenAI-compatible format with Authorization Bearer token. ## Input Parameters ### Required - **messages**: array - Array of message objects with role and content - **model**: string (default: gpt-5.6-sol) - Model identifier ### Optional - **max_completion_tokens**: integer (default: 4096) - Maximum tokens in response (up to 128000). Note: use max_completion_tokens, not max_tokens - **reasoning_effort**: string (default: medium) - Reasoning effort level: none, low, medium, high, or xhigh Options: none, low, medium, high, xhigh - **temperature**: float (default: 1.0) - Sampling temperature (0-2) - **stream**: boolean (default: false) - Enable Server-Sent Events streaming ## Examples ### Frontier Agentic Coding Multi-step code reasoning with the flagship GPT-5.6 tier ```json { "model": "gpt-5.6-sol", "messages": [ { "role": "system", "content": "You are a senior software engineer. Think step by step." }, { "role": "user", "content": "Design a migration plan from a monolithic Express API to modular services, then generate the first service's code with tests." } ], "reasoning_effort": "high", "max_completion_tokens": 8000 } ``` ### Cached Repeated Context Reuse a large system prompt with 90% cached input discount ```json { "model": "gpt-5.6-sol", "messages": [ { "role": "system", "content": "" }, { "role": "user", "content": "Summarize the open TODOs and rank them by risk." } ], "temperature": 0.3, "max_completion_tokens": 4000 } ``` ## Response Format ```json { "id": "chatcmpl-abc123", "object": "chat.completion", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "Response text here" }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 100, "completion_tokens": 50, "total_tokens": 150 } } ``` ## Tips - Sol is the flagship tier — use Terra ($2.50/$15) or Luna ($1/$6) when tasks don't need maximum capability - Use cached inputs ($0.50/M, 90% off) for repeated system prompts and RAG context - reasoning_effort 'high' or 'xhigh' for the most complex tasks - 128K output enables single-shot long-form generation - Lower temperature (0.2-0.5) for coding and analytical tasks ## Documentation https://platform.openai.com/docs/models