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

@@ -1531,6 +1531,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": [
{
@@ -5583,6 +5594,25 @@
],
"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": [
{
@@ -8197,4 +8227,4 @@
}
],
"title": "ServerNotification"
}
}