feat: include network_proxy in /debug-config

This commit is contained in:
Michael Bolin
2026-02-10 01:04:51 -08:00
parent f90480abeb
commit 09e26c95bb
18 changed files with 289 additions and 9 deletions

View File

@@ -2900,6 +2900,17 @@
"model_provider_id": {
"type": "string"
},
"network_proxy": {
"anyOf": [
{
"$ref": "#/definitions/SessionNetworkProxyRuntime"
},
{
"type": "null"
}
],
"description": "Runtime proxy bind addresses, when the managed proxy was started for this session."
},
"reasoning_effort": {
"anyOf": [
{
@@ -8678,6 +8689,25 @@
"title": "SessionConfiguredNotification",
"type": "object"
},
"SessionNetworkProxyRuntime": {
"properties": {
"admin_addr": {
"type": "string"
},
"http_addr": {
"type": "string"
},
"socks_addr": {
"type": "string"
}
},
"required": [
"admin_addr",
"http_addr",
"socks_addr"
],
"type": "object"
},
"SessionSource": {
"oneOf": [
{
@@ -16361,4 +16391,4 @@
},
"title": "CodexAppServerProtocol",
"type": "object"
}
}