Check app-server env on the server side

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Michael Fan
2026-03-27 14:50:08 -04:00
parent 2bf85d232a
commit efc0fa1880
17 changed files with 196 additions and 150 deletions

View File

@@ -2502,21 +2502,6 @@
],
"type": "object"
},
"ThreadDependencyEnvContainsParams": {
"properties": {
"key": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"key",
"threadId"
],
"type": "object"
},
"ThreadDependencyEnvSetParams": {
"properties": {
"threadId": {
@@ -2535,6 +2520,21 @@
],
"type": "object"
},
"ThreadEnvContainsParams": {
"properties": {
"key": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"key",
"threadId"
],
"type": "object"
},
"ThreadForkParams": {
"description": "There are two ways to fork a thread: 1. By thread_id: load the thread from disk by thread_id and fork it into a new thread. 2. By path: load the thread from disk by path and fork it into a new thread.\n\nIf using path, the thread_id param will be ignored.\n\nPrefer using thread_id whenever possible.",
"properties": {
@@ -3653,13 +3653,13 @@
},
"method": {
"enum": [
"thread/dependencyEnv/contains"
"thread/env/contains"
],
"title": "Thread/dependencyEnv/containsRequestMethod",
"title": "Thread/env/containsRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadDependencyEnvContainsParams"
"$ref": "#/definitions/ThreadEnvContainsParams"
}
},
"required": [
@@ -3667,7 +3667,7 @@
"method",
"params"
],
"title": "Thread/dependencyEnv/containsRequest",
"title": "Thread/env/containsRequest",
"type": "object"
},
{