From 926c89cb20b05fc354161bbc29dc2b8f676e25f2 Mon Sep 17 00:00:00 2001 From: zhao-oai Date: Tue, 28 Oct 2025 09:32:20 -0700 Subject: [PATCH] fix advanced.md (#5833) table wasn't formatting correctly --- docs/advanced.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index 7010a62c..1079de03 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -41,12 +41,12 @@ Send a `tools/list` request and you will see that there are two tools available: **`codex`** - Run a Codex session. Accepts configuration parameters matching the Codex Config struct. The `codex` tool takes the following properties: | Property | Type | Description | -| ----------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | --- | +| ----------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | | **`prompt`** (required) | string | The initial user prompt to start the Codex conversation. | | `approval-policy` | string | Approval policy for shell commands generated by the model: `untrusted`, `on-failure`, `on-request`, `never`. | | `base-instructions` | string | The set of instructions to use instead of the default ones. | | `config` | object | Individual [config settings](https://github.com/openai/codex/blob/main/docs/config.md#config) that will override what is in `$CODEX_HOME/config.toml`. | -| `cwd` | string | Working directory for the session. If relative, resolved against the server process's current directory. | | +| `cwd` | string | Working directory for the session. If relative, resolved against the server process's current directory. | | `model` | string | Optional override for the model name (e.g. `o3`, `o4-mini`). | | `profile` | string | Configuration profile from `config.toml` to specify default options. | | `sandbox` | string | Sandbox mode: `read-only`, `workspace-write`, or `danger-full-access`. |