Documentation Index
Fetch the complete documentation index at: https://docs.openai-nebula.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Codex is primarily designed as a terminal-based coding agent. Using Nebula API (which is OpenAI-compatible), you can access popular GPT models like gpt-5.4 and gpt-5.2 through a single API key.Prerequisites
- Create an API key in the Nebula Api console
- Install Codex on your machine (follow Codex installation instructions for your OS)
Configure Nebula Api
Codex requires an OpenAI-compatible API key and Base URL.Configuration (TOML - required)
Environment variables may not work reliably. Please configure Nebula directly in your TOML config. Define a custom provider and point it to the/v1 base URL:
Choose a model
Pick a GPT-family model ID from the Nebula model list.Personality & Performance
Codex allows you to customize how the model behaves using two optional settings: personality and reasoning effort.Personality
Thepersonality setting controls the tone and style of responses.
pragmatic→ direct and practical, minimal explanationconcise→ short and to the pointdetailed→ more explanation and contextanalytical→ structured and logic-focusedcreative→ more expressive and flexible
Reasoning Effort (Performance)
Themodel_reasoning_effort setting controls how much effort the model uses when solving problems.
low→ fastest responses, simpler reasoningmedium→ balanced speed and qualityhigh→ deeper reasoning, better for complex tasks
Example
- clear and practical responses
- stronger reasoning for complex tasks
Troubleshooting
- 401 / invalid API key: re-check your key in the Nebula console and make sure you didn’t add extra spaces
- 404 / wrong endpoint: confirm the Base URL ends with
/v1 - Model not found: verify the model ID exists in the Nebula model list
