app-server: Add transport for remote control

This commit is contained in:
Ruslan Nigmatullin
2026-02-27 18:24:21 -08:00
parent 2c67a27a71
commit 8c644a154b
29 changed files with 4400 additions and 1490 deletions

View File

@@ -324,6 +324,17 @@
"default": {},
"type": "object"
},
"remote_control": {
"anyOf": [
{
"$ref": "#/definitions/RemoteControlConfig"
},
{
"type": "null"
}
],
"default": null
},
"review_model": {
"type": [
"string",
@@ -721,6 +732,17 @@
}
]
},
"RemoteControlConfig": {
"properties": {
"base_url": {
"type": "string"
}
},
"required": [
"base_url"
],
"type": "object"
},
"SandboxMode": {
"enum": [
"read-only",