From 72345db0c42bf29442ee99ced1ec8d834d85faa2 Mon Sep 17 00:00:00 2001 From: bitkyc08-arch Date: Wed, 5 Aug 2026 14:37:05 +0900 Subject: [PATCH] docs(codex): the example contradicted the paragraph under it PR #1022 made fast_mode opt-in and documented that unset adds no [features] table. The config example two lines above still showed that table unconditionally, so a reader following the example expected output they will not get. One comment line in each of the five locales, marking the block as conditional. --- docs-site/src/content/docs/guides/codex-integration.md | 1 + docs-site/src/content/docs/ja/guides/codex-integration.md | 1 + docs-site/src/content/docs/ko/guides/codex-integration.md | 1 + docs-site/src/content/docs/ru/guides/codex-integration.md | 1 + docs-site/src/content/docs/zh-cn/guides/codex-integration.md | 1 + 5 files changed, 5 insertions(+) diff --git a/docs-site/src/content/docs/guides/codex-integration.md b/docs-site/src/content/docs/guides/codex-integration.md index 337d7ff27..2362a13c1 100644 --- a/docs-site/src/content/docs/guides/codex-integration.md +++ b/docs-site/src/content/docs/guides/codex-integration.md @@ -23,6 +23,7 @@ model_catalog_json = "/absolute/path/to/opencodex-catalog.json" # Auto-injected by opencodex openai_base_url = "http://127.0.0.1:10100/v1" +# only when fastMode is set; unset adds no [features] table [features] fast_mode = true ``` diff --git a/docs-site/src/content/docs/ja/guides/codex-integration.md b/docs-site/src/content/docs/ja/guides/codex-integration.md index ec3604902..9a2c8c694 100644 --- a/docs-site/src/content/docs/ja/guides/codex-integration.md +++ b/docs-site/src/content/docs/ja/guides/codex-integration.md @@ -17,6 +17,7 @@ model_catalog_json = "/absolute/path/to/opencodex-catalog.json" # Auto-injected by opencodex openai_base_url = "http://127.0.0.1:10100/v1" +# fastMode を設定した場合のみ。未設定なら [features] は作られません [features] fast_mode = true ``` diff --git a/docs-site/src/content/docs/ko/guides/codex-integration.md b/docs-site/src/content/docs/ko/guides/codex-integration.md index 37b7c4395..46feaebc3 100644 --- a/docs-site/src/content/docs/ko/guides/codex-integration.md +++ b/docs-site/src/content/docs/ko/guides/codex-integration.md @@ -17,6 +17,7 @@ model_catalog_json = "/absolute/path/to/opencodex-catalog.json" # Auto-injected by opencodex openai_base_url = "http://127.0.0.1:10100/v1" +# fastMode를 설정했을 때만 들어갑니다. 설정하지 않으면 [features] 자체가 생기지 않습니다 [features] fast_mode = true ``` diff --git a/docs-site/src/content/docs/ru/guides/codex-integration.md b/docs-site/src/content/docs/ru/guides/codex-integration.md index c34128ce7..394c66dd3 100644 --- a/docs-site/src/content/docs/ru/guides/codex-integration.md +++ b/docs-site/src/content/docs/ru/guides/codex-integration.md @@ -24,6 +24,7 @@ model_catalog_json = "/absolute/path/to/opencodex-catalog.json" # Auto-injected by opencodex openai_base_url = "http://127.0.0.1:10100/v1" +# только если fastMode задан; без него таблица [features] не создаётся [features] fast_mode = true ``` diff --git a/docs-site/src/content/docs/zh-cn/guides/codex-integration.md b/docs-site/src/content/docs/zh-cn/guides/codex-integration.md index 9fa96fde9..f77683d1c 100644 --- a/docs-site/src/content/docs/zh-cn/guides/codex-integration.md +++ b/docs-site/src/content/docs/zh-cn/guides/codex-integration.md @@ -23,6 +23,7 @@ model_catalog_json = "/absolute/path/to/opencodex-catalog.json" # Auto-injected by opencodex openai_base_url = "http://127.0.0.1:10100/v1" +# 仅在设置了 fastMode 时写入;未设置则不会创建 [features] 表 [features] fast_mode = true ```