mirror of
https://github.com/openai/codex.git
synced 2026-04-29 00:55:38 +00:00
Check app-server env on the server side
Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -462,13 +462,13 @@
|
||||
},
|
||||
"method": {
|
||||
"enum": [
|
||||
"thread/dependencyEnv/contains"
|
||||
"thread/env/contains"
|
||||
],
|
||||
"title": "Thread/dependencyEnv/containsRequestMethod",
|
||||
"title": "Thread/env/containsRequestMethod",
|
||||
"type": "string"
|
||||
},
|
||||
"params": {
|
||||
"$ref": "#/definitions/v2/ThreadDependencyEnvContainsParams"
|
||||
"$ref": "#/definitions/v2/ThreadEnvContainsParams"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -476,7 +476,7 @@
|
||||
"method",
|
||||
"params"
|
||||
],
|
||||
"title": "Thread/dependencyEnv/containsRequest",
|
||||
"title": "Thread/env/containsRequest",
|
||||
"type": "object"
|
||||
},
|
||||
{
|
||||
@@ -12207,36 +12207,6 @@
|
||||
"title": "ThreadCompactStartResponse",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadDependencyEnvContainsParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"key": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"key",
|
||||
"threadId"
|
||||
],
|
||||
"title": "ThreadDependencyEnvContainsParams",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadDependencyEnvContainsResponse": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"contains": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contains"
|
||||
],
|
||||
"title": "ThreadDependencyEnvContainsResponse",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadDependencyEnvSetParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
@@ -12262,6 +12232,36 @@
|
||||
"title": "ThreadDependencyEnvSetResponse",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadEnvContainsParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"key": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"key",
|
||||
"threadId"
|
||||
],
|
||||
"title": "ThreadEnvContainsParams",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadEnvContainsResponse": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"contains": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contains"
|
||||
],
|
||||
"title": "ThreadEnvContainsResponse",
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadForkParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"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.",
|
||||
|
||||
Reference in New Issue
Block a user