init command execute mode

This commit is contained in:
ccmjga
2025-06-01 22:53:13 +08:00
parent c5f185df7f
commit 867e9e53bf
16 changed files with 2059 additions and 2191 deletions

View File

@@ -747,12 +747,12 @@
}
}
},
"/ai/action/chat": {
"/ai/action/search": {
"post": {
"tags": [
"ai-controller"
],
"operationId": "actionChat",
"operationId": "searchAction",
"requestBody": {
"content": {
"application/json": {
@@ -780,6 +780,39 @@
}
}
},
"/ai/action/execute": {
"post": {
"tags": [
"ai-controller"
],
"operationId": "actionExecute",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"text/event-stream": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
},
"/scheduler/page-query": {
"get": {
"tags": [