mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
Check app-server env on the server side
Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -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"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user