OpenAI
Catalog 暂无描述。
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| API Key | api_key | available | — |
调用示例
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "OPENAI_ACCEPT_REALTIME_CALL", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("OPENAI_ACCEPT_REALTIME_CALL", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute OPENAI_ACCEPT_REALTIME_CALL --data '{ }'Tool 目录
可用 Tools
278 个可调用操作
Accept an incoming SIP call and configure the realtime session that will handle it.OPENAI_ACCEPT_REALTIME_CALLAccept an incoming SIP call and configure the realtime session that will handle it.需要连接
Accept an incoming SIP call and configure the realtime session that will handle it.
认证
需要 Connected AccountTags
Activate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.OPENAI_ACTIVATE_ORGANIZATION_CERTIFICATESActivate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.需要连接
Activate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.
认证
需要 Connected AccountTags
Activate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.OPENAI_ACTIVATE_PROJECT_CERTIFICATESActivate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.需要连接
Activate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.
认证
需要 Connected AccountTags
Adds a user to a group.OPENAI_ADD_GROUP_USERAdds a user to a group.需要连接
Adds a user to a group.
认证
需要 Connected AccountTags
Grants a group access to a project.OPENAI_ADD_PROJECT_GROUPGrants a group access to a project.需要连接
Grants a group access to a project.
认证
需要 Connected AccountTags
Create an organization admin API keyOPENAI_ADMIN_API_KEYS_CREATECreate a new admin-level API key for the organization.需要连接
Create a new admin-level API key for the organization.
认证
需要 Connected AccountTags
Delete an organization admin API keyOPENAI_ADMIN_API_KEYS_DELETEDelete the specified admin API key.需要连接
Delete the specified admin API key.
认证
需要 Connected AccountTags
Retrieve a single organization API keyOPENAI_ADMIN_API_KEYS_GETGet details for a specific organization API key by its ID.需要连接
Get details for a specific organization API key by its ID.
认证
需要 Connected AccountTags
List organization API keysOPENAI_ADMIN_API_KEYS_LISTRetrieve a paginated list of organization admin API keys.需要连接
Retrieve a paginated list of organization admin API keys.
认证
需要 Connected AccountTags
Archives a project in the organization. Archived projects cannot be used or updated.OPENAI_ARCHIVE_PROJECTArchives a project in the organization. Archived projects cannot be used or updated.需要连接
Archives a project in the organization. Archived projects cannot be used or updated.
认证
需要 Connected AccountTags
Assigns an organization role to a group within the organization.OPENAI_ASSIGN_GROUP_ROLEAssigns an organization role to a group within the organization.需要连接
Assigns an organization role to a group within the organization.
认证
需要 Connected AccountTags
Assigns a project role to a group within a project.OPENAI_ASSIGN_PROJECT_GROUP_ROLEAssigns a project role to a group within a project.需要连接
Assigns a project role to a group within a project.
认证
需要 Connected AccountTags
Assigns a project role to a user within a project.OPENAI_ASSIGN_PROJECT_USER_ROLEAssigns a project role to a user within a project.需要连接
Assigns a project role to a user within a project.
认证
需要 Connected AccountTags
Assigns an organization role to a user within the organization.OPENAI_ASSIGN_USER_ROLEAssigns an organization role to a user within the organization.需要连接
Assigns an organization role to a user within the organization.
认证
需要 Connected AccountTags
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).OPENAI_BETA_CANCEL_RESPONSECancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).需要连接
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).
认证
需要 Connected AccountTags
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).OPENAI_BETA_COMPACTCONVERSATIONCompact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).需要连接
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).
认证
需要 Connected AccountTags
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.OPENAI_BETA_CREATE_RESPONSECreates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.需要连接
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.
认证
需要 Connected AccountTags
Deletes a model response with the given ID.OPENAI_BETA_DELETE_RESPONSEDeletes a model response with the given ID.需要连接
Deletes a model response with the given ID.
认证
需要 Connected AccountTags
Retrieves a model response with the given ID.OPENAI_BETA_GET_RESPONSERetrieves a model response with the given ID.需要连接
Retrieves a model response with the given ID.
认证
需要 Connected AccountTags
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.OPENAI_BETA_GETINPUTTOKENCOUNTSReturns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.需要连接
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.
认证
需要 Connected AccountTags
Returns a list of input items for a given response.OPENAI_BETA_LIST_INPUT_ITEMSReturns a list of input items for a given response.需要连接
Returns a list of input items for a given response.
认证
需要 Connected AccountTags
Cancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.OPENAI_CANCEL_BATCHCancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.需要连接
Cancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.
认证
需要 Connected AccountTags
Cancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.OPENAI_CANCEL_CHAT_SESSION_METHODCancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.需要连接
Cancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.
认证
需要 Connected AccountTags
Cancel an ongoing evaluation run.OPENAI_CANCEL_EVAL_RUNCancel an ongoing evaluation run.需要连接
Cancel an ongoing evaluation run.
认证
需要 Connected AccountTags
Immediately cancel a fine-tune job.OPENAI_CANCEL_FINE_TUNING_JOBImmediately cancel a fine-tune job.需要连接
Immediately cancel a fine-tune job.
认证
需要 Connected AccountTags
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).OPENAI_CANCEL_RESPONSECancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).需要连接
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).
认证
需要 Connected AccountTags
Cancels a run that is `in_progress`.OPENAI_CANCEL_RUNCancels a run that is `in_progress`.需要连接
Cancels a run that is `in_progress`.
认证
需要 Connected AccountTags
Cancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.OPENAI_CANCEL_UPLOADCancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.需要连接
Cancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.
认证
需要 Connected AccountTags
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.OPENAI_CANCEL_VECTOR_STORE_FILE_BATCHCancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.需要连接
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.
认证
需要 Connected AccountTags
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).OPENAI_COMPACTCONVERSATIONCompact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).需要连接
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).
认证
需要 Connected AccountTags
Completes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.OPENAI_COMPLETE_UPLOADCompletes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.需要连接
Completes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.
认证
需要 Connected AccountTags
Create an assistant with a model and instructions.OPENAI_CREATE_ASSISTANTCreate an assistant with a model and instructions.需要连接
Create an assistant with a model and instructions.
认证
需要 Connected AccountTags
Creates and executes a batch from an uploaded file of requestsOPENAI_CREATE_BATCHCreates and executes a batch from an uploaded file of requests需要连接
Creates and executes a batch from an uploaded file of requests
认证
需要 Connected AccountTags
**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.OPENAI_CREATE_CHAT_COMPLETION**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.需要连接
**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.
认证
需要 Connected AccountTags
Create a ChatKit session.OPENAI_CREATE_CHAT_SESSION_METHODCreate a ChatKit session.需要连接
Create a ChatKit session.
认证
需要 Connected AccountTags
Creates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.OPENAI_CREATE_COMPLETIONCreates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.需要连接
Creates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.
认证
需要 Connected AccountTags
Create ContainerOPENAI_CREATE_CONTAINERCreates a container.需要连接
Creates a container.
认证
需要 Connected AccountTags
Create a Container File You can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID.OPENAI_CREATE_CONTAINER_FILECreates a container file.需要连接
Creates a container file.
认证
需要 Connected AccountTags
Create a conversation.OPENAI_CREATE_CONVERSATIONCreate a conversation.需要连接
Create a conversation.
认证
需要 Connected AccountTags
Create items in a conversation with the given ID.OPENAI_CREATE_CONVERSATION_ITEMSCreate items in a conversation with the given ID.需要连接
Create items in a conversation with the given ID.
认证
需要 Connected AccountTags
Creates an embedding vector representing the input text.OPENAI_CREATE_EMBEDDINGCreates an embedding vector representing the input text.需要连接
Creates an embedding vector representing the input text.
认证
需要 Connected AccountTags
Create the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).OPENAI_CREATE_EVALCreate the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).需要连接
Create the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).
认证
需要 Connected AccountTags
Kicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.OPENAI_CREATE_EVAL_RUNKicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.需要连接
Kicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.
认证
需要 Connected AccountTags
**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.OPENAI_CREATE_FINE_TUNING_CHECKPOINT_PERMISSION**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.需要连接
**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.
认证
需要 Connected AccountTags
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)OPENAI_CREATE_FINE_TUNING_JOBCreates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)需要连接
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)
认证
需要 Connected AccountTags
Creates a new group in the organization.OPENAI_CREATE_GROUPCreates a new group in the organization.需要连接
Creates a new group in the organization.
认证
需要 Connected AccountTags
Creates an image given a prompt. [Learn more](/docs/guides/images).OPENAI_CREATE_IMAGECreates an image given a prompt. [Learn more](/docs/guides/images).需要连接
Creates an image given a prompt. [Learn more](/docs/guides/images).
认证
需要 Connected AccountTags
Creates an edited or extended image given one or more source images and a prompt. This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`, `gpt-image-1-mini`, and `chatgpt-image-latest`) and `dall-e-2`.OPENAI_CREATE_IMAGE_EDITYou can call this endpoint with either: - `multipart/form-data`: use binary uploads via `image` (and optional `mask`). - `application/json`: use `images` (and optional `mask`) as references with either `image_url` or `file_id`. Note that JSON requests use `images` (array) instead of the multipart `image` field.需要连接
You can call this endpoint with either: - `multipart/form-data`: use binary uploads via `image` (and optional `mask`). - `application/json`: use `images` (and optional `mask`) as references with either `image_url` or `file_id`. Note that JSON requests use `images` (array) instead of the multipart `image` field.
认证
需要 Connected AccountTags
Create a message.OPENAI_CREATE_MESSAGECreate a message.需要连接
Create a message.
认证
需要 Connected AccountTags
Classifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).OPENAI_CREATE_MODERATIONClassifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).需要连接
Classifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).
认证
需要 Connected AccountTags
Creates an organization spend alert.OPENAI_CREATE_ORGANIZATION_SPEND_ALERTCreates an organization spend alert.需要连接
Creates an organization spend alert.
认证
需要 Connected AccountTags
Create a new project in the organization. Projects can be created and archived, but cannot be deleted.OPENAI_CREATE_PROJECTCreate a new project in the organization. Projects can be created and archived, but cannot be deleted.需要连接
Create a new project in the organization. Projects can be created and archived, but cannot be deleted.
认证
需要 Connected AccountTags
Creates a custom role for a project.OPENAI_CREATE_PROJECT_ROLECreates a custom role for a project.需要连接
Creates a custom role for a project.
认证
需要 Connected AccountTags
Creates a new service account in the project. By default, this also returns an unredacted API key for the service account.OPENAI_CREATE_PROJECT_SERVICE_ACCOUNTCreates a new service account in the project. By default, this also returns an unredacted API key for the service account.需要连接
Creates a new service account in the project. By default, this also returns an unredacted API key for the service account.
认证
需要 Connected AccountTags
Creates a project spend alert.OPENAI_CREATE_PROJECT_SPEND_ALERTCreates a project spend alert.需要连接
Creates a project spend alert.
认证
需要 Connected AccountTags
Adds a user to the project. Users must already be members of the organization to be added to a project.OPENAI_CREATE_PROJECT_USERAdds a user to the project. Users must already be members of the organization to be added to a project.需要连接
Adds a user to the project. Users must already be members of the organization to be added to a project.
认证
需要 Connected AccountTags
Create a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.OPENAI_CREATE_REALTIME_CLIENT_SECRETCreate a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.需要连接
Create a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.
认证
需要 Connected AccountTags
Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.OPENAI_CREATE_REALTIME_SESSIONCreate an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.需要连接
Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.
认证
需要 Connected AccountTags
Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.OPENAI_CREATE_REALTIME_TRANSCRIPTION_SESSIONCreate an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.需要连接
Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.
认证
需要 Connected AccountTags
Create a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.OPENAI_CREATE_REALTIME_TRANSLATION_CLIENT_SECRETCreate a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.需要连接
Create a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.
认证
需要 Connected AccountTags
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.OPENAI_CREATE_RESPONSECreates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.需要连接
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.
认证
需要 Connected AccountTags
Creates a custom role for the organization.OPENAI_CREATE_ROLECreates a custom role for the organization.需要连接
Creates a custom role for the organization.
认证
需要 Connected AccountTags
Create a run.OPENAI_CREATE_RUNCreate a run.需要连接
Create a run.
认证
需要 Connected AccountTags
Create a new skill.OPENAI_CREATE_SKILLCreate a new skill.需要连接
Create a new skill.
认证
需要 Connected AccountTags
Create a new immutable skill version.OPENAI_CREATE_SKILL_VERSIONCreate a new immutable skill version.需要连接
Create a new immutable skill version.
认证
需要 Connected AccountTags
Generates audio from the input text. Returns the audio file content, or a stream of audio events.OPENAI_CREATE_SPEECHGenerates audio from the input text. Returns the audio file content, or a stream of audio events.需要连接
Generates audio from the input text. Returns the audio file content, or a stream of audio events.
认证
需要 Connected AccountTags
Create a thread.OPENAI_CREATE_THREADCreate a thread.需要连接
Create a thread.
认证
需要 Connected AccountTags
Create a thread and run it in one request.OPENAI_CREATE_THREAD_AND_RUNCreate a thread and run it in one request.需要连接
Create a thread and run it in one request.
认证
需要 Connected AccountTags
Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.OPENAI_CREATE_UPLOADCreates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.需要连接
Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.
认证
需要 Connected AccountTags
Create a vector store.OPENAI_CREATE_VECTOR_STORECreate a vector store.需要连接
Create a vector store.
认证
需要 Connected AccountTags
Create a vector store file by attaching a [File](/docs/api-reference/files) to a [vector store](/docs/api-reference/vector-stores/object).OPENAI_CREATE_VECTOR_STORE_FILEThis endpoint is subject to a per-vector-store write rate limit of 300 requests per minute, shared with `/vector_stores/{vector_store_id}/file_batches`. For uploading multiple files to the same vector store, use the file batches endpoint to reduce request volume.需要连接
This endpoint is subject to a per-vector-store write rate limit of 300 requests per minute, shared with `/vector_stores/{vector_store_id}/file_batches`. For uploading multiple files to the same vector store, use the file batches endpoint to reduce request volume.
认证
需要 Connected AccountTags
Create a vector store file batch.OPENAI_CREATE_VECTOR_STORE_FILE_BATCHThe maximum number of files in a single batch request is 2000. Vector store file attach requests are rate limited per vector store (300 requests per minute across both this endpoint and `/vector_stores/{vector_store_id}/files`). For ingesting multiple files into the same vector store, this batch endpoint is recommended.需要连接
The maximum number of files in a single batch request is 2000. Vector store file attach requests are rate limited per vector store (300 requests per minute across both this endpoint and `/vector_stores/{vector_store_id}/files`). For ingesting multiple files into the same vector store, this batch endpoint is recommended.
认证
需要 Connected AccountTags
Create a new video generation job from a prompt and optional reference assets.OPENAI_CREATE_VIDEOCreate a new video generation job from a prompt and optional reference assets.需要连接
Create a new video generation job from a prompt and optional reference assets.
认证
需要 Connected AccountTags
Create a new video generation job by editing a source video or existing generated video.OPENAI_CREATE_VIDEO_EDITCreate a new video generation job by editing a source video or existing generated video.需要连接
Create a new video generation job by editing a source video or existing generated video.
认证
需要 Connected AccountTags
Create an extension of a completed video.OPENAI_CREATE_VIDEO_EXTENDCreate an extension of a completed video.需要连接
Create an extension of a completed video.
认证
需要 Connected AccountTags
Create a remix of a completed video using a refreshed prompt.OPENAI_CREATE_VIDEO_REMIXCreate a remix of a completed video using a refreshed prompt.需要连接
Create a remix of a completed video using a refreshed prompt.
认证
需要 Connected AccountTags
Creates an API key for a service account in the project.OPENAI_CREATEAN_APIKEYFORASERVICEACCOUNTCreates an API key for a service account in the project.需要连接
Creates an API key for a service account in the project.
认证
需要 Connected AccountTags
Deactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.OPENAI_DEACTIVATE_ORGANIZATION_CERTIFICATESDeactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.需要连接
Deactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.
认证
需要 Connected AccountTags
Deactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.OPENAI_DEACTIVATE_PROJECT_CERTIFICATESDeactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.需要连接
Deactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.
认证
需要 Connected AccountTags
Delete an assistant.OPENAI_DELETE_ASSISTANTDelete an assistant.需要连接
Delete an assistant.
认证
需要 Connected AccountTags
Delete a certificate from the organization. The certificate must be inactive for the organization and all projects.OPENAI_DELETE_CERTIFICATEDelete a certificate from the organization. The certificate must be inactive for the organization and all projects.需要连接
Delete a certificate from the organization. The certificate must be inactive for the organization and all projects.
认证
需要 Connected AccountTags
Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.OPENAI_DELETE_CHAT_COMPLETIONDelete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.需要连接
Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.
认证
需要 Connected AccountTags
Delete ContainerOPENAI_DELETE_CONTAINERDelete a container.需要连接
Delete a container.
认证
需要 Connected AccountTags
Delete Container FileOPENAI_DELETE_CONTAINER_FILEDelete a container file.需要连接
Delete a container file.
认证
需要 Connected AccountTags
Delete a conversation. Items in the conversation will not be deleted.OPENAI_DELETE_CONVERSATIONDelete a conversation. Items in the conversation will not be deleted.需要连接
Delete a conversation. Items in the conversation will not be deleted.
认证
需要 Connected AccountTags
Delete an item from a conversation with the given IDs.OPENAI_DELETE_CONVERSATION_ITEMDelete an item from a conversation with the given IDs.需要连接
Delete an item from a conversation with the given IDs.
认证
需要 Connected AccountTags
Delete an evaluation.OPENAI_DELETE_EVALDelete an evaluation.需要连接
Delete an evaluation.
认证
需要 Connected AccountTags
Delete an eval run.OPENAI_DELETE_EVAL_RUNDelete an eval run.需要连接
Delete an eval run.
认证
需要 Connected AccountTags
Delete a file and remove it from all vector stores.OPENAI_DELETE_FILEDelete a file and remove it from all vector stores.需要连接
Delete a file and remove it from all vector stores.
认证
需要 Connected AccountTags
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.OPENAI_DELETE_FINE_TUNING_CHECKPOINT_PERMISSION**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.需要连接
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.
认证
需要 Connected AccountTags
Deletes a group from the organization.OPENAI_DELETE_GROUPDeletes a group from the organization.需要连接
Deletes a group from the organization.
认证
需要 Connected AccountTags
Delete an invite. If the invite has already been accepted, it cannot be deleted.OPENAI_DELETE_INVITEDelete an invite. If the invite has already been accepted, it cannot be deleted.需要连接
Delete an invite. If the invite has already been accepted, it cannot be deleted.
认证
需要 Connected AccountTags
Deletes a message.OPENAI_DELETE_MESSAGEDeletes a message.需要连接
Deletes a message.
认证
需要 Connected AccountTags
Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.OPENAI_DELETE_MODELDelete a fine-tuned model. You must have the Owner role in your organization to delete a model.需要连接
Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.
认证
需要 Connected AccountTags
Deletes an organization spend alert.OPENAI_DELETE_ORGANIZATION_SPEND_ALERTDeletes an organization spend alert.需要连接
Deletes an organization spend alert.
认证
需要 Connected AccountTags
Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.OPENAI_DELETE_PROJECT_API_KEYDeletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.需要连接
Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.
认证
需要 Connected AccountTags
Deletes model permissions for a project.OPENAI_DELETE_PROJECT_MODEL_PERMISSIONSDeletes model permissions for a project.需要连接
Deletes model permissions for a project.
认证
需要 Connected AccountTags
Deletes a custom role from a project.OPENAI_DELETE_PROJECT_ROLEDeletes a custom role from a project.需要连接
Deletes a custom role from a project.
认证
需要 Connected AccountTags
Deletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).OPENAI_DELETE_PROJECT_SERVICE_ACCOUNTDeletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).需要连接
Deletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).
认证
需要 Connected AccountTags
Deletes a project spend alert.OPENAI_DELETE_PROJECT_SPEND_ALERTDeletes a project spend alert.需要连接
Deletes a project spend alert.
认证
需要 Connected AccountTags
Deletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).OPENAI_DELETE_PROJECT_USERDeletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).需要连接
Deletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).
认证
需要 Connected AccountTags
Deletes a model response with the given ID.OPENAI_DELETE_RESPONSEDeletes a model response with the given ID.需要连接
Deletes a model response with the given ID.
认证
需要 Connected AccountTags
Deletes a custom role from the organization.OPENAI_DELETE_ROLEDeletes a custom role from the organization.需要连接
Deletes a custom role from the organization.
认证
需要 Connected AccountTags
Delete a skill by its ID.OPENAI_DELETE_SKILLDelete a skill by its ID.需要连接
Delete a skill by its ID.
认证
需要 Connected AccountTags
Delete a skill version.OPENAI_DELETE_SKILL_VERSIONDelete a skill version.需要连接
Delete a skill version.
认证
需要 Connected AccountTags
Delete a thread.OPENAI_DELETE_THREADDelete a thread.需要连接
Delete a thread.
认证
需要 Connected AccountTags
Delete a ChatKit thread along with its items and stored attachments.OPENAI_DELETE_THREAD_METHODDelete a ChatKit thread along with its items and stored attachments.需要连接
Delete a ChatKit thread along with its items and stored attachments.
认证
需要 Connected AccountTags
Deletes a user from the organization.OPENAI_DELETE_USERDeletes a user from the organization.需要连接
Deletes a user from the organization.
认证
需要 Connected AccountTags
Delete a vector store.OPENAI_DELETE_VECTOR_STOREDelete a vector store.需要连接
Delete a vector store.
认证
需要 Connected AccountTags
Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.OPENAI_DELETE_VECTOR_STORE_FILEDelete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.需要连接
Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.
认证
需要 Connected AccountTags
Permanently delete a completed or failed video and its stored assets.OPENAI_DELETE_VIDEOPermanently delete a completed or failed video and its stored assets.需要连接
Permanently delete a completed or failed video and its stored assets.
认证
需要 Connected AccountTags
Deletes a voice consent recording.OPENAI_DELETE_VOICE_CONSENTDelete a consent recording that was uploaded for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.需要连接
Delete a consent recording that was uploaded for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.
认证
需要 Connected AccountTags
Delete the organization's hard spend limit.OPENAI_DELETEORGANIZATIONSPENDLIMITDelete the organization's hard spend limit.需要连接
Delete the organization's hard spend limit.
认证
需要 Connected AccountTags
Delete a project's hard spend limit.OPENAI_DELETEPROJECTSPENDLIMITDelete a project's hard spend limit.需要连接
Delete a project's hard spend limit.
认证
需要 Connected AccountTags
Returns a response containing the contents of the specified file.OPENAI_DOWNLOAD_FILEReturns a response containing the contents of the specified file.需要连接
Returns a response containing the contents of the specified file.
认证
需要 Connected AccountTags
Retrieves an assistant.OPENAI_GET_ASSISTANTRetrieves an assistant.需要连接
Retrieves an assistant.
认证
需要 Connected AccountTags
Get a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.OPENAI_GET_CERTIFICATEGet a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.需要连接
Get a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.
认证
需要 Connected AccountTags
Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.OPENAI_GET_CHAT_COMPLETIONGet a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.需要连接
Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.
认证
需要 Connected AccountTags
Get the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.OPENAI_GET_CHAT_COMPLETION_MESSAGESGet the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.需要连接
Get the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.
认证
需要 Connected AccountTags
Get a conversationOPENAI_GET_CONVERSATIONGet a conversation需要连接
Get a conversation
认证
需要 Connected AccountTags
Get a single item from a conversation with the given IDs.OPENAI_GET_CONVERSATION_ITEMGet a single item from a conversation with the given IDs.需要连接
Get a single item from a conversation with the given IDs.
认证
需要 Connected AccountTags
Get an evaluation by ID.OPENAI_GET_EVALGet an evaluation by ID.需要连接
Get an evaluation by ID.
认证
需要 Connected AccountTags
Get an evaluation run by ID.OPENAI_GET_EVAL_RUNGet an evaluation run by ID.需要连接
Get an evaluation run by ID.
认证
需要 Connected AccountTags
Get an evaluation run output item by ID.OPENAI_GET_EVAL_RUN_OUTPUT_ITEMGet an evaluation run output item by ID.需要连接
Get an evaluation run output item by ID.
认证
需要 Connected AccountTags
Get a list of output items for an evaluation run.OPENAI_GET_EVAL_RUN_OUTPUT_ITEMSGet a list of output items for an evaluation run.需要连接
Get a list of output items for an evaluation run.
认证
需要 Connected AccountTags
Get a list of runs for an evaluation.OPENAI_GET_EVAL_RUNSGet a list of runs for an evaluation.需要连接
Get a list of runs for an evaluation.
认证
需要 Connected AccountTags
Retrieve a message.OPENAI_GET_MESSAGERetrieve a message.需要连接
Retrieve a message.
认证
需要 Connected AccountTags
Retrieves a model response with the given ID.OPENAI_GET_RESPONSERetrieves a model response with the given ID.需要连接
Retrieves a model response with the given ID.
认证
需要 Connected AccountTags
Retrieves a run.OPENAI_GET_RUNRetrieves a run.需要连接
Retrieves a run.
认证
需要 Connected AccountTags
Retrieves a run step.OPENAI_GET_RUN_STEPRetrieves a run step.需要连接
Retrieves a run step.
认证
需要 Connected AccountTags
Get a skill by its ID.OPENAI_GET_SKILLGet a skill by its ID.需要连接
Get a skill by its ID.
认证
需要 Connected AccountTags
Download a skill zip bundle by its ID.OPENAI_GET_SKILL_CONTENTDownload a skill zip bundle by its ID.需要连接
Download a skill zip bundle by its ID.
认证
需要 Connected AccountTags
Get a specific skill version.OPENAI_GET_SKILL_VERSIONGet a specific skill version.需要连接
Get a specific skill version.
认证
需要 Connected AccountTags
Download a skill version zip bundle.OPENAI_GET_SKILL_VERSION_CONTENTDownload a skill version zip bundle.需要连接
Download a skill version zip bundle.
认证
需要 Connected AccountTags
Retrieves a thread.OPENAI_GET_THREADRetrieves a thread.需要连接
Retrieves a thread.
认证
需要 Connected AccountTags
Retrieve a ChatKit thread by its identifier.OPENAI_GET_THREAD_METHODRetrieve a ChatKit thread by its identifier.需要连接
Retrieve a ChatKit thread by its identifier.
认证
需要 Connected AccountTags
Retrieves a vector store.OPENAI_GET_VECTOR_STORERetrieves a vector store.需要连接
Retrieves a vector store.
认证
需要 Connected AccountTags
Retrieves a vector store file.OPENAI_GET_VECTOR_STORE_FILERetrieves a vector store file.需要连接
Retrieves a vector store file.
认证
需要 Connected AccountTags
Retrieves a vector store file batch.OPENAI_GET_VECTOR_STORE_FILE_BATCHRetrieves a vector store file batch.需要连接
Retrieves a vector store file batch.
认证
需要 Connected AccountTags
Fetch the latest metadata for a generated video.OPENAI_GET_VIDEOFetch the latest metadata for a generated video.需要连接
Fetch the latest metadata for a generated video.
认证
需要 Connected AccountTags
Fetch a character.OPENAI_GET_VIDEO_CHARACTERFetch a character.需要连接
Fetch a character.
认证
需要 Connected AccountTags
Retrieves a voice consent recording.OPENAI_GET_VOICE_CONSENTRetrieve consent recording metadata used for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.需要连接
Retrieve consent recording metadata used for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.
认证
需要 Connected AccountTags
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.OPENAI_GETINPUTTOKENCOUNTSReturns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.需要连接
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.
认证
需要 Connected AccountTags
Get the organization's hard spend limit.OPENAI_GETORGANIZATIONSPENDLIMITGet the organization's hard spend limit.需要连接
Get the organization's hard spend limit.
认证
需要 Connected AccountTags
Get a project's hard spend limit.OPENAI_GETPROJECTSPENDLIMITGet a project's hard spend limit.需要连接
Get a project's hard spend limit.
认证
需要 Connected AccountTags
End an active Realtime API call, whether it was initiated over SIP or WebRTC.OPENAI_HANGUP_REALTIME_CALLEnd an active Realtime API call, whether it was initiated over SIP or WebRTC.需要连接
End an active Realtime API call, whether it was initiated over SIP or WebRTC.
认证
需要 Connected AccountTags
Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.OPENAI_INVITE_USERCreate an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.需要连接
Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.
认证
需要 Connected AccountTags
Returns a list of assistants.OPENAI_LIST_ASSISTANTSReturns a list of assistants.需要连接
Returns a list of assistants.
认证
需要 Connected AccountTags
List user actions and configuration changes within this organization.OPENAI_LIST_AUDIT_LOGSList user actions and configuration changes within this organization.需要连接
List user actions and configuration changes within this organization.
认证
需要 Connected AccountTags
List your organization's batches.OPENAI_LIST_BATCHESList your organization's batches.需要连接
List your organization's batches.
认证
需要 Connected AccountTags
List stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.OPENAI_LIST_CHAT_COMPLETIONSList stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.需要连接
List stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.
认证
需要 Connected AccountTags
List Container filesOPENAI_LIST_CONTAINER_FILESLists container files.需要连接
Lists container files.
认证
需要 Connected AccountTags
List ContainersOPENAI_LIST_CONTAINERSLists containers.需要连接
Lists containers.
认证
需要 Connected AccountTags
List all items for a conversation with the given ID.OPENAI_LIST_CONVERSATION_ITEMSList all items for a conversation with the given ID.需要连接
List all items for a conversation with the given ID.
认证
需要 Connected AccountTags
List evaluations for a project.OPENAI_LIST_EVALSList evaluations for a project.需要连接
List evaluations for a project.
认证
需要 Connected AccountTags
Returns a list of files.OPENAI_LIST_FILESReturns a list of files.需要连接
Returns a list of files.
认证
需要 Connected AccountTags
Returns a list of vector store files in a batch.OPENAI_LIST_FILES_IN_VECTOR_STORE_BATCHReturns a list of vector store files in a batch.需要连接
Returns a list of vector store files in a batch.
认证
需要 Connected AccountTags
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.OPENAI_LIST_FINE_TUNING_CHECKPOINT_PERMISSIONS**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.需要连接
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.
认证
需要 Connected AccountTags
Get status updates for a fine-tuning job.OPENAI_LIST_FINE_TUNING_EVENTSGet status updates for a fine-tuning job.需要连接
Get status updates for a fine-tuning job.
认证
需要 Connected AccountTags
List checkpoints for a fine-tuning job.OPENAI_LIST_FINE_TUNING_JOB_CHECKPOINTSList checkpoints for a fine-tuning job.需要连接
List checkpoints for a fine-tuning job.
认证
需要 Connected AccountTags
Lists the organization roles assigned to a group within the organization.OPENAI_LIST_GROUP_ROLE_ASSIGNMENTSLists the organization roles assigned to a group within the organization.需要连接
Lists the organization roles assigned to a group within the organization.
认证
需要 Connected AccountTags
Lists the users assigned to a group.OPENAI_LIST_GROUP_USERSLists the users assigned to a group.需要连接
Lists the users assigned to a group.
认证
需要 Connected AccountTags
Lists all groups in the organization.OPENAI_LIST_GROUPSLists all groups in the organization.需要连接
Lists all groups in the organization.
认证
需要 Connected AccountTags
Returns a list of input items for a given response.OPENAI_LIST_INPUT_ITEMSReturns a list of input items for a given response.需要连接
Returns a list of input items for a given response.
认证
需要 Connected AccountTags
Returns a list of invites in the organization.OPENAI_LIST_INVITESReturns a list of invites in the organization.需要连接
Returns a list of invites in the organization.
认证
需要 Connected AccountTags
Returns a list of messages for a given thread.OPENAI_LIST_MESSAGESReturns a list of messages for a given thread.需要连接
Returns a list of messages for a given thread.
认证
需要 Connected AccountTags
Lists the currently available models, and provides basic information about each one such as the owner and availability.OPENAI_LIST_MODELSLists the currently available models, and provides basic information about each one such as the owner and availability.需要连接
Lists the currently available models, and provides basic information about each one such as the owner and availability.
认证
需要 Connected AccountTags
List uploaded certificates for this organization.OPENAI_LIST_ORGANIZATION_CERTIFICATESList uploaded certificates for this organization.需要连接
List uploaded certificates for this organization.
认证
需要 Connected AccountTags
Lists organization spend alerts.OPENAI_LIST_ORGANIZATION_SPEND_ALERTSLists organization spend alerts.需要连接
Lists organization spend alerts.
认证
需要 Connected AccountTags
List your organization's fine-tuning jobsOPENAI_LIST_PAGINATED_FINE_TUNING_JOBSList your organization's fine-tuning jobs需要连接
List your organization's fine-tuning jobs
认证
需要 Connected AccountTags
Returns a list of API keys in the project.OPENAI_LIST_PROJECT_API_KEYSReturns a list of API keys in the project.需要连接
Returns a list of API keys in the project.
认证
需要 Connected AccountTags
List certificates for this project.OPENAI_LIST_PROJECT_CERTIFICATESList certificates for this project.需要连接
List certificates for this project.
认证
需要 Connected AccountTags
Lists the project roles assigned to a group within a project.OPENAI_LIST_PROJECT_GROUP_ROLE_ASSIGNMENTSLists the project roles assigned to a group within a project.需要连接
Lists the project roles assigned to a group within a project.
认证
需要 Connected AccountTags
Lists the groups that have access to a project.OPENAI_LIST_PROJECT_GROUPSLists the groups that have access to a project.需要连接
Lists the groups that have access to a project.
认证
需要 Connected AccountTags
Returns the rate limits per model for a project.OPENAI_LIST_PROJECT_RATE_LIMITSReturns the rate limits per model for a project.需要连接
Returns the rate limits per model for a project.
认证
需要 Connected AccountTags
Lists the roles configured for a project.OPENAI_LIST_PROJECT_ROLESLists the roles configured for a project.需要连接
Lists the roles configured for a project.
认证
需要 Connected AccountTags
Returns a list of service accounts in the project.OPENAI_LIST_PROJECT_SERVICE_ACCOUNTSReturns a list of service accounts in the project.需要连接
Returns a list of service accounts in the project.
认证
需要 Connected AccountTags
Lists project spend alerts.OPENAI_LIST_PROJECT_SPEND_ALERTSLists project spend alerts.需要连接
Lists project spend alerts.
认证
需要 Connected AccountTags
Lists the project roles assigned to a user within a project.OPENAI_LIST_PROJECT_USER_ROLE_ASSIGNMENTSLists the project roles assigned to a user within a project.需要连接
Lists the project roles assigned to a user within a project.
认证
需要 Connected AccountTags
Returns a list of users in the project.OPENAI_LIST_PROJECT_USERSReturns a list of users in the project.需要连接
Returns a list of users in the project.
认证
需要 Connected AccountTags
Returns a list of projects.OPENAI_LIST_PROJECTSReturns a list of projects.需要连接
Returns a list of projects.
认证
需要 Connected AccountTags
Lists the roles configured for the organization.OPENAI_LIST_ROLESLists the roles configured for the organization.需要连接
Lists the roles configured for the organization.
认证
需要 Connected AccountTags
Returns a list of run steps belonging to a run.OPENAI_LIST_RUN_STEPSReturns a list of run steps belonging to a run.需要连接
Returns a list of run steps belonging to a run.
认证
需要 Connected AccountTags
Returns a list of runs belonging to a thread.OPENAI_LIST_RUNSReturns a list of runs belonging to a thread.需要连接
Returns a list of runs belonging to a thread.
认证
需要 Connected AccountTags
List skill versions for a skill.OPENAI_LIST_SKILL_VERSIONSList skill versions for a skill.需要连接
List skill versions for a skill.
认证
需要 Connected AccountTags
List all skills for the current project.OPENAI_LIST_SKILLSList all skills for the current project.需要连接
List all skills for the current project.
认证
需要 Connected AccountTags
List items that belong to a ChatKit thread.OPENAI_LIST_THREAD_ITEMS_METHODList items that belong to a ChatKit thread.需要连接
List items that belong to a ChatKit thread.
认证
需要 Connected AccountTags
List ChatKit threads with optional pagination and user filters.OPENAI_LIST_THREADS_METHODList ChatKit threads with optional pagination and user filters.需要连接
List ChatKit threads with optional pagination and user filters.
认证
需要 Connected AccountTags
Lists the organization roles assigned to a user within the organization.OPENAI_LIST_USER_ROLE_ASSIGNMENTSLists the organization roles assigned to a user within the organization.需要连接
Lists the organization roles assigned to a user within the organization.
认证
需要 Connected AccountTags
Lists all of the users in the organization.OPENAI_LIST_USERSLists all of the users in the organization.需要连接
Lists all of the users in the organization.
认证
需要 Connected AccountTags
Returns a list of vector store files.OPENAI_LIST_VECTOR_STORE_FILESReturns a list of vector store files.需要连接
Returns a list of vector store files.
认证
需要 Connected AccountTags
Returns a list of vector stores.OPENAI_LIST_VECTOR_STORESReturns a list of vector stores.需要连接
Returns a list of vector stores.
认证
需要 Connected AccountTags
List recently generated videos for the current project.OPENAI_LIST_VIDEOSList recently generated videos for the current project.需要连接
List recently generated videos for the current project.
认证
需要 Connected AccountTags
Returns a list of voice consent recordings.OPENAI_LIST_VOICE_CONSENTSList consent recordings available to your organization for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.需要连接
List consent recordings available to your organization for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.
认证
需要 Connected AccountTags
Modifies an assistant.OPENAI_MODIFY_ASSISTANTModifies an assistant.需要连接
Modifies an assistant.
认证
需要 Connected AccountTags
Modify a certificate. Note that only the name can be modified.OPENAI_MODIFY_CERTIFICATEModify a certificate. Note that only the name can be modified.需要连接
Modify a certificate. Note that only the name can be modified.
认证
需要 Connected AccountTags
Modifies a message.OPENAI_MODIFY_MESSAGEModifies a message.需要连接
Modifies a message.
认证
需要 Connected AccountTags
Modifies a project in the organization.OPENAI_MODIFY_PROJECTModifies a project in the organization.需要连接
Modifies a project in the organization.
认证
需要 Connected AccountTags
Modifies a user's role in the project.OPENAI_MODIFY_PROJECT_USERModifies a user's role in the project.需要连接
Modifies a user's role in the project.
认证
需要 Connected AccountTags
Modifies a run.OPENAI_MODIFY_RUNModifies a run.需要连接
Modifies a run.
认证
需要 Connected AccountTags
Modifies a thread.OPENAI_MODIFY_THREADModifies a thread.需要连接
Modifies a thread.
认证
需要 Connected AccountTags
Modifies a user's role in the organization.OPENAI_MODIFY_USERModifies a user's role in the organization.需要连接
Modifies a user's role in the organization.
认证
需要 Connected AccountTags
Modifies a vector store.OPENAI_MODIFY_VECTOR_STOREModifies a vector store.需要连接
Modifies a vector store.
认证
需要 Connected AccountTags
Pause a fine-tune job.OPENAI_PAUSE_FINE_TUNING_JOBPause a fine-tune job.需要连接
Pause a fine-tune job.
认证
需要 Connected AccountTags
Transfer an active SIP call to a new destination using the SIP REFER verb.OPENAI_REFER_REALTIME_CALLTransfer an active SIP call to a new destination using the SIP REFER verb.需要连接
Transfer an active SIP call to a new destination using the SIP REFER verb.
认证
需要 Connected AccountTags
Decline an incoming SIP call by returning a SIP status code to the caller.OPENAI_REJECT_REALTIME_CALLDecline an incoming SIP call by returning a SIP status code to the caller.需要连接
Decline an incoming SIP call by returning a SIP status code to the caller.
认证
需要 Connected AccountTags
Removes a user from a group.OPENAI_REMOVE_GROUP_USERRemoves a user from a group.需要连接
Removes a user from a group.
认证
需要 Connected AccountTags
Revokes a group's access to a project.OPENAI_REMOVE_PROJECT_GROUPRevokes a group's access to a project.需要连接
Revokes a group's access to a project.
认证
需要 Connected AccountTags
Resume a fine-tune job.OPENAI_RESUME_FINE_TUNING_JOBResume a fine-tune job.需要连接
Resume a fine-tune job.
认证
需要 Connected AccountTags
Retrieves a batch.OPENAI_RETRIEVE_BATCHRetrieves a batch.需要连接
Retrieves a batch.
认证
需要 Connected AccountTags
Retrieve ContainerOPENAI_RETRIEVE_CONTAINERRetrieves a container.需要连接
Retrieves a container.
认证
需要 Connected AccountTags
Retrieve Container FileOPENAI_RETRIEVE_CONTAINER_FILERetrieves a container file.需要连接
Retrieves a container file.
认证
需要 Connected AccountTags
Retrieve Container File ContentOPENAI_RETRIEVE_CONTAINER_FILE_CONTENTRetrieves a container file content.需要连接
Retrieves a container file content.
认证
需要 Connected AccountTags
Returns information about a specific file.OPENAI_RETRIEVE_FILEReturns information about a specific file.需要连接
Returns information about a specific file.
认证
需要 Connected AccountTags
Get info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)OPENAI_RETRIEVE_FINE_TUNING_JOBGet info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)需要连接
Get info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)
认证
需要 Connected AccountTags
Retrieves a group.OPENAI_RETRIEVE_GROUPRetrieves a group.需要连接
Retrieves a group.
认证
需要 Connected AccountTags
Retrieves an organization role assigned to a group.OPENAI_RETRIEVE_GROUP_ROLERetrieves an organization role assigned to a group.需要连接
Retrieves an organization role assigned to a group.
认证
需要 Connected AccountTags
Retrieves a user in a group.OPENAI_RETRIEVE_GROUP_USERRetrieves a user in a group.需要连接
Retrieves a user in a group.
认证
需要 Connected AccountTags
Retrieves an invite.OPENAI_RETRIEVE_INVITERetrieves an invite.需要连接
Retrieves an invite.
认证
需要 Connected AccountTags
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.OPENAI_RETRIEVE_MODELRetrieves a model instance, providing basic information about the model such as the owner and permissioning.需要连接
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
认证
需要 Connected AccountTags
Retrieves organization data retention controls.OPENAI_RETRIEVE_ORGANIZATION_DATA_RETENTIONRetrieves organization data retention controls.需要连接
Retrieves organization data retention controls.
认证
需要 Connected AccountTags
Retrieves an organization spend alert.OPENAI_RETRIEVE_ORGANIZATION_SPEND_ALERTRetrieves an organization spend alert.需要连接
Retrieves an organization spend alert.
认证
需要 Connected AccountTags
Retrieves a project.OPENAI_RETRIEVE_PROJECTRetrieves a project.需要连接
Retrieves a project.
认证
需要 Connected AccountTags
Retrieves an API key in the project.OPENAI_RETRIEVE_PROJECT_API_KEYRetrieves an API key in the project.需要连接
Retrieves an API key in the project.
认证
需要 Connected AccountTags
Retrieves project data retention controls.OPENAI_RETRIEVE_PROJECT_DATA_RETENTIONRetrieves project data retention controls.需要连接
Retrieves project data retention controls.
认证
需要 Connected AccountTags
Retrieves a project's group.OPENAI_RETRIEVE_PROJECT_GROUPRetrieves a project's group.需要连接
Retrieves a project's group.
认证
需要 Connected AccountTags
Retrieves a project role assigned to a group.OPENAI_RETRIEVE_PROJECT_GROUP_ROLERetrieves a project role assigned to a group.需要连接
Retrieves a project role assigned to a group.
认证
需要 Connected AccountTags
Returns hosted tool permissions for a project.OPENAI_RETRIEVE_PROJECT_HOSTED_TOOL_PERMISSIONSReturns hosted tool permissions for a project.需要连接
Returns hosted tool permissions for a project.
认证
需要 Connected AccountTags
Returns model permissions for a project.OPENAI_RETRIEVE_PROJECT_MODEL_PERMISSIONSReturns model permissions for a project.需要连接
Returns model permissions for a project.
认证
需要 Connected AccountTags
Retrieves a project role.OPENAI_RETRIEVE_PROJECT_ROLERetrieves a project role.需要连接
Retrieves a project role.
认证
需要 Connected AccountTags
Retrieves a service account in the project.OPENAI_RETRIEVE_PROJECT_SERVICE_ACCOUNTRetrieves a service account in the project.需要连接
Retrieves a service account in the project.
认证
需要 Connected AccountTags
Retrieves a project spend alert.OPENAI_RETRIEVE_PROJECT_SPEND_ALERTRetrieves a project spend alert.需要连接
Retrieves a project spend alert.
认证
需要 Connected AccountTags
Retrieves a user in the project.OPENAI_RETRIEVE_PROJECT_USERRetrieves a user in the project.需要连接
Retrieves a user in the project.
认证
需要 Connected AccountTags
Retrieves a project role assigned to a user.OPENAI_RETRIEVE_PROJECT_USER_ROLERetrieves a project role assigned to a user.需要连接
Retrieves a project role assigned to a user.
认证
需要 Connected AccountTags
Retrieves an organization role.OPENAI_RETRIEVE_ROLERetrieves an organization role.需要连接
Retrieves an organization role.
认证
需要 Connected AccountTags
Retrieves a user by their identifier.OPENAI_RETRIEVE_USERRetrieves a user by their identifier.需要连接
Retrieves a user by their identifier.
认证
需要 Connected AccountTags
Retrieves an organization role assigned to a user.OPENAI_RETRIEVE_USER_ROLERetrieves an organization role assigned to a user.需要连接
Retrieves an organization role assigned to a user.
认证
需要 Connected AccountTags
Retrieve the parsed contents of a vector store file.OPENAI_RETRIEVE_VECTOR_STORE_FILE_CONTENTRetrieve the parsed contents of a vector store file.需要连接
Retrieve the parsed contents of a vector store file.
认证
需要 Connected AccountTags
Download the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.OPENAI_RETRIEVE_VIDEO_CONTENTDownload the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.需要连接
Download the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.
认证
需要 Connected AccountTags
Run a grader.OPENAI_RUN_GRADERRun a grader.需要连接
Run a grader.
认证
需要 Connected AccountTags
Search a vector store for relevant chunks based on a query and file attributes filter.OPENAI_SEARCH_VECTOR_STORESearch a vector store for relevant chunks based on a query and file attributes filter.需要连接
Search a vector store for relevant chunks based on a query and file attributes filter.
认证
需要 Connected AccountTags
When a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.OPENAI_SUBMIT_TOOL_OUPUTS_TO_RUNWhen a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.需要连接
When a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.
认证
需要 Connected AccountTags
Unassigns an organization role from a group within the organization.OPENAI_UNASSIGN_GROUP_ROLEUnassigns an organization role from a group within the organization.需要连接
Unassigns an organization role from a group within the organization.
认证
需要 Connected AccountTags
Unassigns a project role from a group within a project.OPENAI_UNASSIGN_PROJECT_GROUP_ROLEUnassigns a project role from a group within a project.需要连接
Unassigns a project role from a group within a project.
认证
需要 Connected AccountTags
Unassigns a project role from a user within a project.OPENAI_UNASSIGN_PROJECT_USER_ROLEUnassigns a project role from a user within a project.需要连接
Unassigns a project role from a user within a project.
认证
需要 Connected AccountTags
Unassigns an organization role from a user within the organization.OPENAI_UNASSIGN_USER_ROLEUnassigns an organization role from a user within the organization.需要连接
Unassigns an organization role from a user within the organization.
认证
需要 Connected AccountTags
Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.OPENAI_UPDATE_CHAT_COMPLETIONModify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.需要连接
Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.
认证
需要 Connected AccountTags
Update a conversationOPENAI_UPDATE_CONVERSATIONUpdate a conversation需要连接
Update a conversation
认证
需要 Connected AccountTags
Update certain properties of an evaluation.OPENAI_UPDATE_EVALUpdate certain properties of an evaluation.需要连接
Update certain properties of an evaluation.
认证
需要 Connected AccountTags
Updates a group's information.OPENAI_UPDATE_GROUPUpdates a group's information.需要连接
Updates a group's information.
认证
需要 Connected AccountTags
Updates organization data retention controls.OPENAI_UPDATE_ORGANIZATION_DATA_RETENTIONUpdates organization data retention controls.需要连接
Updates organization data retention controls.
认证
需要 Connected AccountTags
Updates an organization spend alert.OPENAI_UPDATE_ORGANIZATION_SPEND_ALERTUpdates an organization spend alert.需要连接
Updates an organization spend alert.
认证
需要 Connected AccountTags
Updates project data retention controls.OPENAI_UPDATE_PROJECT_DATA_RETENTIONUpdates project data retention controls.需要连接
Updates project data retention controls.
认证
需要 Connected AccountTags
Updates hosted tool permissions for a project.OPENAI_UPDATE_PROJECT_HOSTED_TOOL_PERMISSIONSUpdates hosted tool permissions for a project.需要连接
Updates hosted tool permissions for a project.
认证
需要 Connected AccountTags
Updates model permissions for a project.OPENAI_UPDATE_PROJECT_MODEL_PERMISSIONSUpdates model permissions for a project.需要连接
Updates model permissions for a project.
认证
需要 Connected AccountTags
Updates a project rate limit.OPENAI_UPDATE_PROJECT_RATE_LIMITSUpdates a project rate limit.需要连接
Updates a project rate limit.
认证
需要 Connected AccountTags
Updates an existing project role.OPENAI_UPDATE_PROJECT_ROLEUpdates an existing project role.需要连接
Updates an existing project role.
认证
需要 Connected AccountTags
Updates a service account in the project.OPENAI_UPDATE_PROJECT_SERVICE_ACCOUNTUpdates a service account in the project.需要连接
Updates a service account in the project.
认证
需要 Connected AccountTags
Updates a project spend alert.OPENAI_UPDATE_PROJECT_SPEND_ALERTUpdates a project spend alert.需要连接
Updates a project spend alert.
认证
需要 Connected AccountTags
Updates an existing organization role.OPENAI_UPDATE_ROLEUpdates an existing organization role.需要连接
Updates an existing organization role.
认证
需要 Connected AccountTags
Update the default version pointer for a skill.OPENAI_UPDATE_SKILL_DEFAULT_VERSIONUpdate the default version pointer for a skill.需要连接
Update the default version pointer for a skill.
认证
需要 Connected AccountTags
Update attributes on a vector store file.OPENAI_UPDATE_VECTOR_STORE_FILE_ATTRIBUTESUpdate attributes on a vector store file.需要连接
Update attributes on a vector store file.
认证
需要 Connected AccountTags
Updates a voice consent recording (metadata only).OPENAI_UPDATE_VOICE_CONSENTUpdate consent recording metadata used for creating custom voices. This endpoint updates metadata only and does not replace the underlying audio. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.需要连接
Update consent recording metadata used for creating custom voices. This endpoint updates metadata only and does not replace the underlying audio. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.
认证
需要 Connected AccountTags
Create or replace the organization's hard spend limit.OPENAI_UPDATEORGANIZATIONSPENDLIMITCreate or replace the organization's hard spend limit.需要连接
Create or replace the organization's hard spend limit.
认证
需要 Connected AccountTags
Create or replace a project's hard spend limit.OPENAI_UPDATEPROJECTSPENDLIMITCreate or replace a project's hard spend limit.需要连接
Create or replace a project's hard spend limit.
认证
需要 Connected AccountTags
Upload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.OPENAI_UPLOAD_CERTIFICATEUpload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.需要连接
Upload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.
认证
需要 Connected AccountTags
Get audio speeches usage details for the organization.OPENAI_USAGE_AUDIO_SPEECHESGet audio speeches usage details for the organization.需要连接
Get audio speeches usage details for the organization.
认证
需要 Connected AccountTags
Get audio transcriptions usage details for the organization.OPENAI_USAGE_AUDIO_TRANSCRIPTIONSGet audio transcriptions usage details for the organization.需要连接
Get audio transcriptions usage details for the organization.
认证
需要 Connected AccountTags
Get code interpreter sessions usage details for the organization.OPENAI_USAGE_CODE_INTERPRETER_SESSIONSGet code interpreter sessions usage details for the organization.需要连接
Get code interpreter sessions usage details for the organization.
认证
需要 Connected AccountTags
Get completions usage details for the organization.OPENAI_USAGE_COMPLETIONSGet completions usage details for the organization.需要连接
Get completions usage details for the organization.
认证
需要 Connected AccountTags
Get costs details for the organization.OPENAI_USAGE_COSTSGet costs details for the organization.需要连接
Get costs details for the organization.
认证
需要 Connected AccountTags
Get embeddings usage details for the organization.OPENAI_USAGE_EMBEDDINGSGet embeddings usage details for the organization.需要连接
Get embeddings usage details for the organization.
认证
需要 Connected AccountTags
Get file search calls usage details for the organization.OPENAI_USAGE_FILE_SEARCH_CALLSGet file search calls usage details for the organization.需要连接
Get file search calls usage details for the organization.
认证
需要 Connected AccountTags
Get images usage details for the organization.OPENAI_USAGE_IMAGESGet images usage details for the organization.需要连接
Get images usage details for the organization.
认证
需要 Connected AccountTags
Get moderations usage details for the organization.OPENAI_USAGE_MODERATIONSGet moderations usage details for the organization.需要连接
Get moderations usage details for the organization.
认证
需要 Connected AccountTags
Get vector stores usage details for the organization.OPENAI_USAGE_VECTOR_STORESGet vector stores usage details for the organization.需要连接
Get vector stores usage details for the organization.
认证
需要 Connected AccountTags
Get web search calls usage details for the organization.OPENAI_USAGE_WEB_SEARCH_CALLSGet web search calls usage details for the organization.需要连接
Get web search calls usage details for the organization.
认证
需要 Connected AccountTags
Validate a grader.OPENAI_VALIDATE_GRADERValidate a grader.需要连接
Validate a grader.
认证
需要 Connected AccountTags