Configure a subagent_models_manager

This commit is contained in:
Suraj Srinivasan
2026-03-18 03:24:40 -07:00
parent 770616414a
commit bfb918b83e
13 changed files with 191 additions and 81 deletions

View File

@@ -578,6 +578,14 @@
"service_tier": {
"$ref": "#/definitions/ServiceTier"
},
"subagent_model_catalog_json": {
"allOf": [
{
"$ref": "#/definitions/AbsolutePathBuf"
}
],
"description": "Optional path to a JSON subagent model catalog (applied on startup only)."
},
"tools": {
"$ref": "#/definitions/ToolsToml"
},
@@ -2421,6 +2429,14 @@
],
"description": "Directory where Codex stores the SQLite state DB. Defaults to `$CODEX_SQLITE_HOME` when set. Otherwise uses `$CODEX_HOME`."
},
"subagent_model_catalog_json": {
"allOf": [
{
"$ref": "#/definitions/AbsolutePathBuf"
}
],
"description": "Optional path to a JSON subagent model catalog (applied on startup only). Per-thread `config` overrides are accepted but do not reapply this (no-ops)."
},
"suppress_unstable_features_warning": {
"description": "Suppress warnings about unstable (under development) features.",
"type": "boolean"
@@ -2479,4 +2495,4 @@
},
"title": "ConfigToml",
"type": "object"
}
}