mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
Update network config schema fixture
This commit is contained in:
@@ -1783,13 +1783,36 @@
|
||||
},
|
||||
"NetworkProxyMode": {
|
||||
"description": "How Codex should choose an outbound proxy when a future resolver is available.\n\nThis is intentionally configuration-only for now: it establishes the stable spelling used by the resolver work without changing any HTTP routing by itself.",
|
||||
"enum": [
|
||||
"auto",
|
||||
"env",
|
||||
"system",
|
||||
"direct"
|
||||
],
|
||||
"type": "string"
|
||||
"oneOf": [
|
||||
{
|
||||
"description": "Prefer explicit proxy configuration, then OS/system discovery, then direct.",
|
||||
"enum": [
|
||||
"auto"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"description": "Only honor conventional environment/configured proxy values.",
|
||||
"enum": [
|
||||
"env"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"description": "Prefer OS/system proxy discovery (for example PAC/WPAD) when supported.",
|
||||
"enum": [
|
||||
"system"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"description": "Do not use a proxy for Codex-managed outbound clients.",
|
||||
"enum": [
|
||||
"direct"
|
||||
],
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"NetworkProxyModeToml": {
|
||||
"enum": [
|
||||
@@ -5047,4 +5070,4 @@
|
||||
},
|
||||
"title": "ConfigToml",
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user