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

@@ -3034,6 +3034,17 @@
"default": {},
"type": "object"
},
"remote_control": {
"anyOf": [
{
"$ref": "#/definitions/RemoteControlConfig"
},
{
"type": "null"
}
],
"default": null
},
"review_model": {
"type": [
"string",
@@ -7114,6 +7125,17 @@
"title": "ReasoningTextDeltaNotification",
"type": "object"
},
"RemoteControlConfig": {
"properties": {
"base_url": {
"type": "string"
}
},
"required": [
"base_url"
],
"type": "object"
},
"RequestId": {
"anyOf": [
{