U

gpt-5.1-codex-mini-2025-11-13

4k ContextTextPopular

gpt-5.1-codex-mini-2025-11-13 - compact and efficient. versatile general-purpose AI.

Capability Radar

Compare with Claude 3

About gpt-5.1-codex-mini-2025-11-13

"Industry-leading language understanding"

gpt-5.1-codex-mini-2025-11-13 is Unknown's enterprise-grade model featuring focused context window (4K). Industry-leading language understanding, this model delivers most widely adopted and battle-tested.

Key Strengths

  • Industry-leading language understanding
  • Premium capabilities for demanding applications
  • Fast inference with efficient resource usage
  • Specialized for programming tasks
  • OpenAI SDK compatible

🎯 Best Use Cases

  • Code generation and debugging
  • Technical documentation writing
  • Algorithm implementation
  • Data analysis and extraction
  • API integration and automation
  • Business intelligence and insights

Interactive Playground

Parameters Setup

0.7

Controls randomness: Lowering results in less random completions.

Return data chunks as they arrive

request.js
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.okrouter.com/v1",
  apiKey: process.env.OKROUTER_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "gpt-5.1-codex-mini-2025-11-13",
  messages: [{ role: "user", content: "Hello world!" }],
  temperature: 0.7,
  stream: true,
});