openapi_openai
OpenApiOpenAIClient - the Ruby gem for the OpenAI API
The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
This SDK is automatically generated by the OpenAPI Generator project:
- API version: 2.3.0
- Package version: 1.2.0
- Generator version: 7.18.0
- Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit https://github.com/oapicf/openapi-openai
Installation
Build a gem
To build the Ruby code into a gem:
gem build openapi_openai.gemspec
Then either install the gem locally:
gem install ./openapi_openai-1.2.0.gem
(for development, run gem install --dev ./openapi_openai-1.2.0.gem to install the development dependencies)
or publish the gem to a gem hosting service, e.g. RubyGems.
Finally add this to the Gemfile:
gem 'openapi_openai', '~> 1.2.0'
Install from Git
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
gem 'openapi_openai', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
Include the Ruby code directly
Include the Ruby code directly using -I as follows:
ruby -Ilib script.rb
Getting Started
Please follow the installation procedure and then run the following code:
# Load the gem
require 'openapi_openai'
# Setup authorization
OpenApiOpenAIClient.configure do |config|
# Configure Bearer authorization: ApiKeyAuth
config.access_token = 'YOUR_BEARER_TOKEN'
# Configure a proc to get access tokens in lieu of the static access_token configuration
config.access_token_getter = -> { 'YOUR TOKEN GETTER PROC' }
end
api_instance = OpenApiOpenAIClient::AssistantsApi.new
thread_id = 'thread_id_example' # String | The ID of the thread to which this run belongs.
run_id = 'run_id_example' # String | The ID of the run to cancel.
begin
#Cancels a run that is `in_progress`.
result = api_instance.cancel_run(thread_id, run_id)
p result
rescue OpenApiOpenAIClient::ApiError => e
puts "Exception when calling AssistantsApi->cancel_run: #{e}"
end
Documentation for API Endpoints
All URIs are relative to https://api.openai.com/v1
| Class | Method | HTTP request | Description |
|---|---|---|---|
| OpenApiOpenAIClient::AssistantsApi | cancel_run | POST /threads/thread_id/runs/run_id/cancel | Cancels a run that is in_progress. |
| OpenApiOpenAIClient::AssistantsApi | create_assistant | POST /assistants | Create an assistant with a model and instructions. |
| OpenApiOpenAIClient::AssistantsApi | create_message | POST /threads/thread_id/messages | Create a message. |
| OpenApiOpenAIClient::AssistantsApi | create_run | POST /threads/thread_id/runs | Create a run. |
| OpenApiOpenAIClient::AssistantsApi | create_thread | POST /threads | Create a thread. |
| OpenApiOpenAIClient::AssistantsApi | create_thread_and_run | POST /threads/runs | Create a thread and run it in one request. |
| OpenApiOpenAIClient::AssistantsApi | delete_assistant | DELETE /assistants/assistant_id | Delete an assistant. |
| OpenApiOpenAIClient::AssistantsApi | delete_message | DELETE /threads/thread_id/messages/message_id | Deletes a message. |
| OpenApiOpenAIClient::AssistantsApi | delete_thread | DELETE /threads/thread_id | Delete a thread. |
| OpenApiOpenAIClient::AssistantsApi | get_assistant | GET /assistants/assistant_id | Retrieves an assistant. |
| OpenApiOpenAIClient::AssistantsApi | get_message | GET /threads/thread_id/messages/message_id | Retrieve a message. |
| OpenApiOpenAIClient::AssistantsApi | get_run | GET /threads/thread_id/runs/run_id | Retrieves a run. |
| OpenApiOpenAIClient::AssistantsApi | get_run_step | GET /threads/thread_id/runs/run_id/steps/step_id | Retrieves a run step. |
| OpenApiOpenAIClient::AssistantsApi | get_thread | GET /threads/thread_id | Retrieves a thread. |
| OpenApiOpenAIClient::AssistantsApi | list_assistants | GET /assistants | Returns a list of assistants. |
| OpenApiOpenAIClient::AssistantsApi | list_messages | GET /threads/thread_id/messages | Returns a list of messages for a given thread. |
| OpenApiOpenAIClient::AssistantsApi | list_run_steps | GET /threads/thread_id/runs/run_id/steps | Returns a list of run steps belonging to a run. |
| OpenApiOpenAIClient::AssistantsApi | list_runs | GET /threads/thread_id/runs | Returns a list of runs belonging to a thread. |
| OpenApiOpenAIClient::AssistantsApi | modify_assistant | POST /assistants/assistant_id | Modifies an assistant. |
| OpenApiOpenAIClient::AssistantsApi | modify_message | POST /threads/thread_id/messages/message_id | Modifies a message. |
| OpenApiOpenAIClient::AssistantsApi | modify_run | POST /threads/thread_id/runs/run_id | Modifies a run. |
| OpenApiOpenAIClient::AssistantsApi | modify_thread | POST /threads/thread_id | Modifies a thread. |
| OpenApiOpenAIClient::AssistantsApi | submit_tool_ouputs_to_run | POST /threads/thread_id/runs/run_id/submit_tool_outputs | 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. |
| OpenApiOpenAIClient::AudioApi | create_speech | POST /audio/speech | Generates audio from the input text. |
| OpenApiOpenAIClient::AudioApi | create_transcription | POST /audio/transcriptions | Transcribes audio into the input language. |
| OpenApiOpenAIClient::AudioApi | create_translation | POST /audio/translations | Translates audio into English. |
| OpenApiOpenAIClient::AuditLogsApi | list_audit_logs | GET /organization/audit_logs | List user actions and configuration changes within this organization. |
| OpenApiOpenAIClient::BatchApi | cancel_batch | POST /batches/batch_id/cancel | 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. |
| OpenApiOpenAIClient::BatchApi | create_batch | POST /batches | Creates and executes a batch from an uploaded file of requests |
| OpenApiOpenAIClient::BatchApi | list_batches | GET /batches | List your organization's batches. |
| OpenApiOpenAIClient::BatchApi | retrieve_batch | GET /batches/batch_id | Retrieves a batch. |
| OpenApiOpenAIClient::ChatApi | create_chat_completion | POST /chat/completions | Creates a model response for the given chat conversation. Learn more in the text generation, vision, and 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. |
| OpenApiOpenAIClient::CompletionsApi | create_completion | POST /completions | Creates a completion for the provided prompt and parameters. |
| OpenApiOpenAIClient::DefaultApi | admin_api_keys_create | POST /organization/admin_api_keys | Create an organization admin API key |
| OpenApiOpenAIClient::DefaultApi | admin_api_keys_delete | DELETE /organization/admin_api_keys/key_id | Delete an organization admin API key |
| OpenApiOpenAIClient::DefaultApi | admin_api_keys_get | GET /organization/admin_api_keys/key_id | Retrieve a single organization API key |
| OpenApiOpenAIClient::DefaultApi | admin_api_keys_list | GET /organization/admin_api_keys | List organization API keys |
| OpenApiOpenAIClient::EmbeddingsApi | create_embedding | POST /embeddings | Creates an embedding vector representing the input text. |
| OpenApiOpenAIClient::FilesApi | create_file | POST /files | Upload a file that can be used across various endpoints. Individual files can be up to 512 MB, and the size of all files uploaded by one organization can be up to 100 GB. The Assistants API supports files up to 2 million tokens and of specific file types. See the Assistants Tools guide for details. The Fine-tuning API only supports .jsonl files. The input also has certain required formats for fine-tuning chat or completions models. The Batch API only supports .jsonl files up to 200 MB in size. The input also has a specific required format. Please contact us if you need to increase these storage limits. |
| OpenApiOpenAIClient::FilesApi | delete_file | DELETE /files/file_id | Delete a file. |
| OpenApiOpenAIClient::FilesApi | download_file | GET /files/file_id/content | Returns the contents of the specified file. |
| OpenApiOpenAIClient::FilesApi | list_files | GET /files | Returns a list of files. |
| OpenApiOpenAIClient::FilesApi | retrieve_file | GET /files/file_id | Returns information about a specific file. |
| OpenApiOpenAIClient::FineTuningApi | cancel_fine_tuning_job | POST /fine_tuning/jobs/fine_tuning_job_id/cancel | Immediately cancel a fine-tune job. |
| OpenApiOpenAIClient::FineTuningApi | create_fine_tuning_job | POST /fine_tuning/jobs | 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 |
| OpenApiOpenAIClient::FineTuningApi | list_fine_tuning_events | GET /fine_tuning/jobs/fine_tuning_job_id/events | Get status updates for a fine-tuning job. |
| OpenApiOpenAIClient::FineTuningApi | list_fine_tuning_job_checkpoints | GET /fine_tuning/jobs/fine_tuning_job_id/checkpoints | List checkpoints for a fine-tuning job. |
| OpenApiOpenAIClient::FineTuningApi | list_paginated_fine_tuning_jobs | GET /fine_tuning/jobs | List your organization's fine-tuning jobs |
| OpenApiOpenAIClient::FineTuningApi | retrieve_fine_tuning_job | GET /fine_tuning/jobs/fine_tuning_job_id | Get info about a fine-tuning job. Learn more about fine-tuning |
| OpenApiOpenAIClient::ImagesApi | create_image | POST /images/generations | Creates an image given a prompt. |
| OpenApiOpenAIClient::ImagesApi | create_image_edit | POST /images/edits | Creates an edited or extended image given an original image and a prompt. |
| OpenApiOpenAIClient::ImagesApi | create_image_variation | POST /images/variations | Creates a variation of a given image. |
| OpenApiOpenAIClient::InvitesApi | delete_invite | DELETE /organization/invites/invite_id | Delete an invite. If the invite has already been accepted, it cannot be deleted. |
| OpenApiOpenAIClient::InvitesApi | invite_user | POST /organization/invites | Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization. |
| OpenApiOpenAIClient::InvitesApi | list_invites | GET /organization/invites | Returns a list of invites in the organization. |
| OpenApiOpenAIClient::InvitesApi | retrieve_invite | GET /organization/invites/invite_id | Retrieves an invite. |
| OpenApiOpenAIClient::ModelsApi | delete_model | DELETE /models/model | Delete a fine-tuned model. You must have the Owner role in your organization to delete a model. |
| OpenApiOpenAIClient::ModelsApi | list_models | GET /models | Lists the currently available models, and provides basic information about each one such as the owner and availability. |
| OpenApiOpenAIClient::ModelsApi | retrieve_model | GET /models/model | Retrieves a model instance, providing basic information about the model such as the owner and permissioning. |
| OpenApiOpenAIClient::ModerationsApi | create_moderation | POST /moderations | Classifies if text and/or image inputs are potentially harmful. Learn more in the moderation guide. |
| OpenApiOpenAIClient::ProjectsApi | archive_project | POST /organization/projects/project_id/archive | Archives a project in the organization. Archived projects cannot be used or updated. |
| OpenApiOpenAIClient::ProjectsApi | create_project | POST /organization/projects | Create a new project in the organization. Projects can be created and archived, but cannot be deleted. |
| OpenApiOpenAIClient::ProjectsApi | create_project_service_account | POST /organization/projects/project_id/service_accounts | Creates a new service account in the project. This also returns an unredacted API key for the service account. |
| OpenApiOpenAIClient::ProjectsApi | create_project_user | POST /organization/projects/project_id/users | Adds a user to the project. Users must already be members of the organization to be added to a project. |
| OpenApiOpenAIClient::ProjectsApi | delete_project_api_key | DELETE /organization/projects/project_id/api_keys/key_id | Deletes an API key from the project. |
| OpenApiOpenAIClient::ProjectsApi | delete_project_service_account | DELETE /organization/projects/project_id/service_accounts/service_account_id | Deletes a service account from the project. |
| OpenApiOpenAIClient::ProjectsApi | delete_project_user | DELETE /organization/projects/project_id/users/user_id | Deletes a user from the project. |
| OpenApiOpenAIClient::ProjectsApi | list_project_api_keys | GET /organization/projects/project_id/api_keys | Returns a list of API keys in the project. |
| OpenApiOpenAIClient::ProjectsApi | list_project_rate_limits | GET /organization/projects/project_id/rate_limits | Returns the rate limits per model for a project. |
| OpenApiOpenAIClient::ProjectsApi | list_project_service_accounts | GET /organization/projects/project_id/service_accounts | Returns a list of service accounts in the project. |
| OpenApiOpenAIClient::ProjectsApi | list_project_users | GET /organization/projects/project_id/users | Returns a list of users in the project. |
| OpenApiOpenAIClient::ProjectsApi | list_projects | GET /organization/projects | Returns a list of projects. |
| OpenApiOpenAIClient::ProjectsApi | modify_project | POST /organization/projects/project_id | Modifies a project in the organization. |
| OpenApiOpenAIClient::ProjectsApi | modify_project_user | POST /organization/projects/project_id/users/user_id | Modifies a user's role in the project. |
| OpenApiOpenAIClient::ProjectsApi | retrieve_project | GET /organization/projects/project_id | Retrieves a project. |
| OpenApiOpenAIClient::ProjectsApi | retrieve_project_api_key | GET /organization/projects/project_id/api_keys/key_id | Retrieves an API key in the project. |
| OpenApiOpenAIClient::ProjectsApi | retrieve_project_service_account | GET /organization/projects/project_id/service_accounts/service_account_id | Retrieves a service account in the project. |
| OpenApiOpenAIClient::ProjectsApi | retrieve_project_user | GET /organization/projects/project_id/users/user_id | Retrieves a user in the project. |
| OpenApiOpenAIClient::ProjectsApi | update_project_rate_limits | POST /organization/projects/project_id/rate_limits/rate_limit_id | Updates a project rate limit. |
| OpenApiOpenAIClient::RealtimeApi | create_realtime_session | POST /realtime/sessions | 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. |
| OpenApiOpenAIClient::UploadsApi | add_upload_part | POST /uploads/upload_id/parts | Adds a Part to an Upload object. A Part represents a chunk of bytes from the file you are trying to upload. Each Part can be at most 64 MB, and you can add Parts until you hit the Upload maximum of 8 GB. It is possible to add multiple Parts in parallel. You can decide the intended order of the Parts when you complete the Upload. |
| OpenApiOpenAIClient::UploadsApi | cancel_upload | POST /uploads/upload_id/cancel | Cancels the Upload. No Parts may be added after an Upload is cancelled. |
| OpenApiOpenAIClient::UploadsApi | complete_upload | POST /uploads/upload_id/complete | Completes the Upload. Within the returned Upload object, there is a nested File 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. |
| OpenApiOpenAIClient::UploadsApi | create_upload | POST /uploads | Creates an intermediate Upload object that you can add Parts 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 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 purposes, the correct mime_type must be specified. Please refer to documentation for the supported MIME types for your use case: - Assistants For guidance on the proper filename extensions for each purpose, please follow the documentation on creating a File. |
| OpenApiOpenAIClient::UsageApi | usage_audio_speeches | GET /organization/usage/audio_speeches | Get audio speeches usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_audio_transcriptions | GET /organization/usage/audio_transcriptions | Get audio transcriptions usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_code_interpreter_sessions | GET /organization/usage/code_interpreter_sessions | Get code interpreter sessions usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_completions | GET /organization/usage/completions | Get completions usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_costs | GET /organization/costs | Get costs details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_embeddings | GET /organization/usage/embeddings | Get embeddings usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_images | GET /organization/usage/images | Get images usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_moderations | GET /organization/usage/moderations | Get moderations usage details for the organization. |
| OpenApiOpenAIClient::UsageApi | usage_vector_stores | GET /organization/usage/vector_stores | Get vector stores usage details for the organization. |
| OpenApiOpenAIClient::UsersApi | delete_user | DELETE /organization/users/user_id | Deletes a user from the organization. |
| OpenApiOpenAIClient::UsersApi | list_users | GET /organization/users | Lists all of the users in the organization. |
| OpenApiOpenAIClient::UsersApi | modify_user | POST /organization/users/user_id | Modifies a user's role in the organization. |
| OpenApiOpenAIClient::UsersApi | retrieve_user | GET /organization/users/user_id | Retrieves a user by their identifier. |
| OpenApiOpenAIClient::VectorStoresApi | cancel_vector_store_file_batch | POST /vector_stores/vector_store_id/file_batches/batch_id/cancel | Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible. |
| OpenApiOpenAIClient::VectorStoresApi | create_vector_store | POST /vector_stores | Create a vector store. |
| OpenApiOpenAIClient::VectorStoresApi | create_vector_store_file | POST /vector_stores/vector_store_id/files | Create a vector store file by attaching a File to a vector store. |
| OpenApiOpenAIClient::VectorStoresApi | create_vector_store_file_batch | POST /vector_stores/vector_store_id/file_batches | Create a vector store file batch. |
| OpenApiOpenAIClient::VectorStoresApi | delete_vector_store | DELETE /vector_stores/vector_store_id | Delete a vector store. |
| OpenApiOpenAIClient::VectorStoresApi | delete_vector_store_file | DELETE /vector_stores/vector_store_id/files/file_id | 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 endpoint. |
| OpenApiOpenAIClient::VectorStoresApi | get_vector_store | GET /vector_stores/vector_store_id | Retrieves a vector store. |
| OpenApiOpenAIClient::VectorStoresApi | get_vector_store_file | GET /vector_stores/vector_store_id/files/file_id | Retrieves a vector store file. |
| OpenApiOpenAIClient::VectorStoresApi | get_vector_store_file_batch | GET /vector_stores/vector_store_id/file_batches/batch_id | Retrieves a vector store file batch. |
| OpenApiOpenAIClient::VectorStoresApi | list_files_in_vector_store_batch | GET /vector_stores/vector_store_id/file_batches/batch_id/files | Returns a list of vector store files in a batch. |
| OpenApiOpenAIClient::VectorStoresApi | list_vector_store_files | GET /vector_stores/vector_store_id/files | Returns a list of vector store files. |
| OpenApiOpenAIClient::VectorStoresApi | list_vector_stores | GET /vector_stores | Returns a list of vector stores. |
| OpenApiOpenAIClient::VectorStoresApi | modify_vector_store | POST /vector_stores/vector_store_id | Modifies a vector store. |
Documentation for Models
- OpenApiOpenAIClient::AdminApiKey
- OpenApiOpenAIClient::AdminApiKeyOwner
- OpenApiOpenAIClient::AdminApiKeysCreateRequest
- OpenApiOpenAIClient::AdminApiKeysDelete200Response
- OpenApiOpenAIClient::ApiKeyList
- OpenApiOpenAIClient::ArrayOfContentPartsInner
- OpenApiOpenAIClient::AssistantObject
- OpenApiOpenAIClient::AssistantObjectToolResources
- OpenApiOpenAIClient::AssistantObjectToolResourcesCodeInterpreter
- OpenApiOpenAIClient::AssistantObjectToolResourcesFileSearch
- OpenApiOpenAIClient::AssistantObjectToolsInner
- OpenApiOpenAIClient::AssistantStreamEvent
- OpenApiOpenAIClient::AssistantToolsCode
- OpenApiOpenAIClient::AssistantToolsFileSearch
- OpenApiOpenAIClient::AssistantToolsFileSearchFileSearch
- OpenApiOpenAIClient::AssistantToolsFileSearchTypeOnly
- OpenApiOpenAIClient::AssistantToolsFunction
- OpenApiOpenAIClient::AssistantsApiResponseFormatOption
- OpenApiOpenAIClient::AssistantsApiToolChoiceOption
- OpenApiOpenAIClient::AssistantsNamedToolChoice
- OpenApiOpenAIClient::AssistantsNamedToolChoiceFunction
- OpenApiOpenAIClient::AudioResponseFormat
- OpenApiOpenAIClient::AuditLog
- OpenApiOpenAIClient::AuditLogActor
- OpenApiOpenAIClient::AuditLogActorApiKey
- OpenApiOpenAIClient::AuditLogActorServiceAccount
- OpenApiOpenAIClient::AuditLogActorSession
- OpenApiOpenAIClient::AuditLogActorUser
- OpenApiOpenAIClient::AuditLogApiKeyCreated
- OpenApiOpenAIClient::AuditLogApiKeyCreatedData
- OpenApiOpenAIClient::AuditLogApiKeyDeleted
- OpenApiOpenAIClient::AuditLogApiKeyUpdated
- OpenApiOpenAIClient::AuditLogApiKeyUpdatedChangesRequested
- OpenApiOpenAIClient::AuditLogEventType
- OpenApiOpenAIClient::AuditLogInviteAccepted
- OpenApiOpenAIClient::AuditLogInviteSent
- OpenApiOpenAIClient::AuditLogInviteSentData
- OpenApiOpenAIClient::AuditLogLoginFailed
- OpenApiOpenAIClient::AuditLogOrganizationUpdated
- OpenApiOpenAIClient::AuditLogOrganizationUpdatedChangesRequested
- OpenApiOpenAIClient::AuditLogOrganizationUpdatedChangesRequestedSettings
- OpenApiOpenAIClient::AuditLogProject
- OpenApiOpenAIClient::AuditLogProjectArchived
- OpenApiOpenAIClient::AuditLogProjectCreated
- OpenApiOpenAIClient::AuditLogProjectCreatedData
- OpenApiOpenAIClient::AuditLogProjectUpdated
- OpenApiOpenAIClient::AuditLogProjectUpdatedChangesRequested
- OpenApiOpenAIClient::AuditLogRateLimitDeleted
- OpenApiOpenAIClient::AuditLogRateLimitUpdated
- OpenApiOpenAIClient::AuditLogRateLimitUpdatedChangesRequested
- OpenApiOpenAIClient::AuditLogServiceAccountCreated
- OpenApiOpenAIClient::AuditLogServiceAccountCreatedData
- OpenApiOpenAIClient::AuditLogServiceAccountDeleted
- OpenApiOpenAIClient::AuditLogServiceAccountUpdated
- OpenApiOpenAIClient::AuditLogServiceAccountUpdatedChangesRequested
- OpenApiOpenAIClient::AuditLogUserAdded
- OpenApiOpenAIClient::AuditLogUserAddedData
- OpenApiOpenAIClient::AuditLogUserDeleted
- OpenApiOpenAIClient::AuditLogUserUpdated
- OpenApiOpenAIClient::AuditLogUserUpdatedChangesRequested
- OpenApiOpenAIClient::AutoChunkingStrategy
- OpenApiOpenAIClient::AutoChunkingStrategyRequestParam
- OpenApiOpenAIClient::Batch
- OpenApiOpenAIClient::BatchErrors
- OpenApiOpenAIClient::BatchErrorsDataInner
- OpenApiOpenAIClient::BatchRequestCounts
- OpenApiOpenAIClient::BatchRequestInput
- OpenApiOpenAIClient::BatchRequestOutput
- OpenApiOpenAIClient::BatchRequestOutputError
- OpenApiOpenAIClient::BatchRequestOutputResponse
- OpenApiOpenAIClient::ChatCompletionFunctionCallOption
- OpenApiOpenAIClient::ChatCompletionFunctions
- OpenApiOpenAIClient::ChatCompletionMessageToolCall
- OpenApiOpenAIClient::ChatCompletionMessageToolCallChunk
- OpenApiOpenAIClient::ChatCompletionMessageToolCallChunkFunction
- OpenApiOpenAIClient::ChatCompletionMessageToolCallFunction
- OpenApiOpenAIClient::ChatCompletionNamedToolChoice
- OpenApiOpenAIClient::ChatCompletionRequestAssistantMessage
- OpenApiOpenAIClient::ChatCompletionRequestAssistantMessageAudio
- OpenApiOpenAIClient::ChatCompletionRequestAssistantMessageContent
- OpenApiOpenAIClient::ChatCompletionRequestAssistantMessageContentPart
- OpenApiOpenAIClient::ChatCompletionRequestAssistantMessageFunctionCall
- OpenApiOpenAIClient::ChatCompletionRequestDeveloperMessage
- OpenApiOpenAIClient::ChatCompletionRequestDeveloperMessageContent
- OpenApiOpenAIClient::ChatCompletionRequestFunctionMessage
- OpenApiOpenAIClient::ChatCompletionRequestMessage
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartAudio
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartAudioInputAudio
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartImage
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartImageImageUrl
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartRefusal
- OpenApiOpenAIClient::ChatCompletionRequestMessageContentPartText
- OpenApiOpenAIClient::ChatCompletionRequestSystemMessage
- OpenApiOpenAIClient::ChatCompletionRequestSystemMessageContent
- OpenApiOpenAIClient::ChatCompletionRequestToolMessage
- OpenApiOpenAIClient::ChatCompletionRequestToolMessageContent
- OpenApiOpenAIClient::ChatCompletionRequestUserMessage
- OpenApiOpenAIClient::ChatCompletionRequestUserMessageContent
- OpenApiOpenAIClient::ChatCompletionRequestUserMessageContentPart
- OpenApiOpenAIClient::ChatCompletionResponseMessage
- OpenApiOpenAIClient::ChatCompletionResponseMessageAudio
- OpenApiOpenAIClient::ChatCompletionResponseMessageFunctionCall
- OpenApiOpenAIClient::ChatCompletionRole
- OpenApiOpenAIClient::ChatCompletionStreamOptions
- OpenApiOpenAIClient::ChatCompletionStreamResponseDelta
- OpenApiOpenAIClient::ChatCompletionStreamResponseDeltaFunctionCall
- OpenApiOpenAIClient::ChatCompletionTokenLogprob
- OpenApiOpenAIClient::ChatCompletionTokenLogprobTopLogprobsInner
- OpenApiOpenAIClient::ChatCompletionTool
- OpenApiOpenAIClient::ChatCompletionToolChoiceOption
- OpenApiOpenAIClient::ChunkingStrategyRequestParam
- OpenApiOpenAIClient::CompleteUploadRequest
- OpenApiOpenAIClient::CompletionUsage
- OpenApiOpenAIClient::CompletionUsageCompletionTokensDetails
- OpenApiOpenAIClient::CompletionUsagePromptTokensDetails
- OpenApiOpenAIClient::CostsResult
- OpenApiOpenAIClient::CostsResultAmount
- OpenApiOpenAIClient::CreateAssistantRequest
- OpenApiOpenAIClient::CreateAssistantRequestModel
- OpenApiOpenAIClient::CreateAssistantRequestToolResources
- OpenApiOpenAIClient::CreateAssistantRequestToolResourcesCodeInterpreter
- OpenApiOpenAIClient::CreateAssistantRequestToolResourcesFileSearch
- OpenApiOpenAIClient::CreateAssistantRequestToolResourcesFileSearchVectorStoresInner
- OpenApiOpenAIClient::CreateAssistantRequestToolResourcesFileSearchVectorStoresInnerChunkingStrategy
- OpenApiOpenAIClient::CreateBatchRequest
- OpenApiOpenAIClient::CreateChatCompletionFunctionResponse
- OpenApiOpenAIClient::CreateChatCompletionFunctionResponseChoicesInner
- OpenApiOpenAIClient::CreateChatCompletionRequest
- OpenApiOpenAIClient::CreateChatCompletionRequestAudio
- OpenApiOpenAIClient::CreateChatCompletionRequestFunctionCall
- OpenApiOpenAIClient::CreateChatCompletionRequestModel
- OpenApiOpenAIClient::CreateChatCompletionRequestResponseFormat
- OpenApiOpenAIClient::CreateChatCompletionRequestStop
- OpenApiOpenAIClient::CreateChatCompletionResponse
- OpenApiOpenAIClient::CreateChatCompletionResponseChoicesInner
- OpenApiOpenAIClient::CreateChatCompletionResponseChoicesInnerLogprobs
- OpenApiOpenAIClient::CreateChatCompletionStreamResponse
- OpenApiOpenAIClient::CreateChatCompletionStreamResponseChoicesInner
- OpenApiOpenAIClient::CreateChatCompletionStreamResponseUsage
- OpenApiOpenAIClient::CreateCompletionRequest
- OpenApiOpenAIClient::CreateCompletionRequestModel
- OpenApiOpenAIClient::CreateCompletionRequestPrompt
- OpenApiOpenAIClient::CreateCompletionRequestStop
- OpenApiOpenAIClient::CreateCompletionResponse
- OpenApiOpenAIClient::CreateCompletionResponseChoicesInner
- OpenApiOpenAIClient::CreateCompletionResponseChoicesInnerLogprobs
- OpenApiOpenAIClient::CreateEmbeddingRequest
- OpenApiOpenAIClient::CreateEmbeddingRequestInput
- OpenApiOpenAIClient::CreateEmbeddingRequestModel
- OpenApiOpenAIClient::CreateEmbeddingResponse
- OpenApiOpenAIClient::CreateEmbeddingResponseUsage
- OpenApiOpenAIClient::CreateFineTuningJobRequest
- OpenApiOpenAIClient::CreateFineTuningJobRequestHyperparameters
- OpenApiOpenAIClient::CreateFineTuningJobRequestHyperparametersBatchSize
- OpenApiOpenAIClient::CreateFineTuningJobRequestHyperparametersLearningRateMultiplier
- OpenApiOpenAIClient::CreateFineTuningJobRequestHyperparametersNEpochs
- OpenApiOpenAIClient::CreateFineTuningJobRequestIntegrationsInner
- OpenApiOpenAIClient::CreateFineTuningJobRequestIntegrationsInnerWandb
- OpenApiOpenAIClient::CreateFineTuningJobRequestModel
- OpenApiOpenAIClient::CreateImageEditRequestModel
- OpenApiOpenAIClient::CreateImageRequest
- OpenApiOpenAIClient::CreateImageRequestModel
- OpenApiOpenAIClient::CreateMessageRequest
- OpenApiOpenAIClient::CreateMessageRequestAttachmentsInner
- OpenApiOpenAIClient::CreateMessageRequestAttachmentsInnerToolsInner
- OpenApiOpenAIClient::CreateMessageRequestContent
- OpenApiOpenAIClient::CreateModerationRequest
- OpenApiOpenAIClient::CreateModerationRequestInput
- OpenApiOpenAIClient::CreateModerationRequestInputOneOfInner
- OpenApiOpenAIClient::CreateModerationRequestInputOneOfInnerOneOf
- OpenApiOpenAIClient::CreateModerationRequestInputOneOfInnerOneOf1
- OpenApiOpenAIClient::CreateModerationRequestInputOneOfInnerOneOfImageUrl
- OpenApiOpenAIClient::CreateModerationRequestModel
- OpenApiOpenAIClient::CreateModerationResponse
- OpenApiOpenAIClient::CreateModerationResponseResultsInner
- OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategories
- OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategoryAppliedInputTypes
- OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategoryScores
- OpenApiOpenAIClient::CreateRunRequest
- OpenApiOpenAIClient::CreateRunRequestModel
- OpenApiOpenAIClient::CreateSpeechRequest
- OpenApiOpenAIClient::CreateSpeechRequestModel
- OpenApiOpenAIClient::CreateThreadAndRunRequest
- OpenApiOpenAIClient::CreateThreadAndRunRequestToolResources
- OpenApiOpenAIClient::CreateThreadAndRunRequestToolsInner
- OpenApiOpenAIClient::CreateThreadRequest
- OpenApiOpenAIClient::CreateThreadRequestToolResources
- OpenApiOpenAIClient::CreateThreadRequestToolResourcesFileSearch
- OpenApiOpenAIClient::CreateThreadRequestToolResourcesFileSearchVectorStoresInner
- OpenApiOpenAIClient::CreateTranscription200Response
- OpenApiOpenAIClient::CreateTranscriptionRequestModel
- OpenApiOpenAIClient::CreateTranscriptionResponseJson
- OpenApiOpenAIClient::CreateTranscriptionResponseVerboseJson
- OpenApiOpenAIClient::CreateTranslation200Response
- OpenApiOpenAIClient::CreateTranslationResponseJson
- OpenApiOpenAIClient::CreateTranslationResponseVerboseJson
- OpenApiOpenAIClient::CreateUploadRequest
- OpenApiOpenAIClient::CreateVectorStoreFileBatchRequest
- OpenApiOpenAIClient::CreateVectorStoreFileRequest
- OpenApiOpenAIClient::CreateVectorStoreRequest
- OpenApiOpenAIClient::CreateVectorStoreRequestChunkingStrategy
- OpenApiOpenAIClient::DefaultProjectErrorResponse
- OpenApiOpenAIClient::DeleteAssistantResponse
- OpenApiOpenAIClient::DeleteFileResponse
- OpenApiOpenAIClient::DeleteMessageResponse
- OpenApiOpenAIClient::DeleteModelResponse
- OpenApiOpenAIClient::DeleteThreadResponse
- OpenApiOpenAIClient::DeleteVectorStoreFileResponse
- OpenApiOpenAIClient::DeleteVectorStoreResponse
- OpenApiOpenAIClient::DoneEvent
- OpenApiOpenAIClient::Embedding
- OpenApiOpenAIClient::Error
- OpenApiOpenAIClient::ErrorEvent
- OpenApiOpenAIClient::ErrorResponse
- OpenApiOpenAIClient::FileSearchRankingOptions
- OpenApiOpenAIClient::FineTuneChatCompletionRequestAssistantMessage
- OpenApiOpenAIClient::FineTuneChatRequestInput
- OpenApiOpenAIClient::FineTuneChatRequestInputMessagesInner
- OpenApiOpenAIClient::FineTuneCompletionRequestInput
- OpenApiOpenAIClient::FineTuneDPOMethod
- OpenApiOpenAIClient::FineTuneDPOMethodHyperparameters
- OpenApiOpenAIClient::FineTuneDPOMethodHyperparametersBatchSize
- OpenApiOpenAIClient::FineTuneDPOMethodHyperparametersBeta
- OpenApiOpenAIClient::FineTuneDPOMethodHyperparametersLearningRateMultiplier
- OpenApiOpenAIClient::FineTuneDPOMethodHyperparametersNEpochs
- OpenApiOpenAIClient::FineTuneMethod
- OpenApiOpenAIClient::FineTunePreferenceRequestInput
- OpenApiOpenAIClient::FineTunePreferenceRequestInputInput
- OpenApiOpenAIClient::FineTunePreferenceRequestInputPreferredCompletionInner
- OpenApiOpenAIClient::FineTuneSupervisedMethod
- OpenApiOpenAIClient::FineTuneSupervisedMethodHyperparameters
- OpenApiOpenAIClient::FineTuningIntegration
- OpenApiOpenAIClient::FineTuningJob
- OpenApiOpenAIClient::FineTuningJobCheckpoint
- OpenApiOpenAIClient::FineTuningJobCheckpointMetrics
- OpenApiOpenAIClient::FineTuningJobError
- OpenApiOpenAIClient::FineTuningJobEvent
- OpenApiOpenAIClient::FineTuningJobHyperparameters
- OpenApiOpenAIClient::FineTuningJobIntegrationsInner
- OpenApiOpenAIClient::FunctionObject
- OpenApiOpenAIClient::Image
- OpenApiOpenAIClient::ImagesResponse
- OpenApiOpenAIClient::Invite
- OpenApiOpenAIClient::InviteDeleteResponse
- OpenApiOpenAIClient::InviteListResponse
- OpenApiOpenAIClient::InviteProjectsInner
- OpenApiOpenAIClient::InviteRequest
- OpenApiOpenAIClient::InviteRequestProjectsInner
- OpenApiOpenAIClient::ListAssistantsResponse
- OpenApiOpenAIClient::ListAuditLogsEffectiveAtParameter
- OpenApiOpenAIClient::ListAuditLogsResponse
- OpenApiOpenAIClient::ListBatchesResponse
- OpenApiOpenAIClient::ListFilesResponse
- OpenApiOpenAIClient::ListFineTuningJobCheckpointsResponse
- OpenApiOpenAIClient::ListFineTuningJobEventsResponse
- OpenApiOpenAIClient::ListMessagesResponse
- OpenApiOpenAIClient::ListModelsResponse
- OpenApiOpenAIClient::ListPaginatedFineTuningJobsResponse
- OpenApiOpenAIClient::ListRunStepsResponse
- OpenApiOpenAIClient::ListRunsResponse
- OpenApiOpenAIClient::ListThreadsResponse
- OpenApiOpenAIClient::ListVectorStoreFilesResponse
- OpenApiOpenAIClient::ListVectorStoresResponse
- OpenApiOpenAIClient::MessageContentImageFileObject
- OpenApiOpenAIClient::MessageContentImageFileObjectImageFile
- OpenApiOpenAIClient::MessageContentImageUrlObject
- OpenApiOpenAIClient::MessageContentImageUrlObjectImageUrl
- OpenApiOpenAIClient::MessageContentRefusalObject
- OpenApiOpenAIClient::MessageContentTextAnnotationsFileCitationObject
- OpenApiOpenAIClient::MessageContentTextAnnotationsFileCitationObjectFileCitation
- OpenApiOpenAIClient::MessageContentTextAnnotationsFilePathObject
- OpenApiOpenAIClient::MessageContentTextAnnotationsFilePathObjectFilePath
- OpenApiOpenAIClient::MessageContentTextObject
- OpenApiOpenAIClient::MessageContentTextObjectText
- OpenApiOpenAIClient::MessageContentTextObjectTextAnnotationsInner
- OpenApiOpenAIClient::MessageDeltaContentImageFileObject
- OpenApiOpenAIClient::MessageDeltaContentImageFileObjectImageFile
- OpenApiOpenAIClient::MessageDeltaContentImageUrlObject
- OpenApiOpenAIClient::MessageDeltaContentImageUrlObjectImageUrl
- OpenApiOpenAIClient::MessageDeltaContentRefusalObject
- OpenApiOpenAIClient::MessageDeltaContentTextAnnotationsFileCitationObject
- OpenApiOpenAIClient::MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation
- OpenApiOpenAIClient::MessageDeltaContentTextAnnotationsFilePathObject
- OpenApiOpenAIClient::MessageDeltaContentTextAnnotationsFilePathObjectFilePath
- OpenApiOpenAIClient::MessageDeltaContentTextObject
- OpenApiOpenAIClient::MessageDeltaContentTextObjectText
- OpenApiOpenAIClient::MessageDeltaContentTextObjectTextAnnotationsInner
- OpenApiOpenAIClient::MessageDeltaObject
- OpenApiOpenAIClient::MessageDeltaObjectDelta
- OpenApiOpenAIClient::MessageDeltaObjectDeltaContentInner
- OpenApiOpenAIClient::MessageObject
- OpenApiOpenAIClient::MessageObjectContentInner
- OpenApiOpenAIClient::MessageObjectIncompleteDetails
- OpenApiOpenAIClient::MessageRequestContentTextObject
- OpenApiOpenAIClient::MessageStreamEvent
- OpenApiOpenAIClient::MessageStreamEventOneOf
- OpenApiOpenAIClient::MessageStreamEventOneOf1
- OpenApiOpenAIClient::MessageStreamEventOneOf2
- OpenApiOpenAIClient::MessageStreamEventOneOf3
- OpenApiOpenAIClient::MessageStreamEventOneOf4
- OpenApiOpenAIClient::Model
- OpenApiOpenAIClient::ModifyAssistantRequest
- OpenApiOpenAIClient::ModifyAssistantRequestToolResources
- OpenApiOpenAIClient::ModifyAssistantRequestToolResourcesCodeInterpreter
- OpenApiOpenAIClient::ModifyAssistantRequestToolResourcesFileSearch
- OpenApiOpenAIClient::ModifyMessageRequest
- OpenApiOpenAIClient::ModifyRunRequest
- OpenApiOpenAIClient::ModifyThreadRequest
- OpenApiOpenAIClient::ModifyThreadRequestToolResources
- OpenApiOpenAIClient::ModifyThreadRequestToolResourcesFileSearch
- OpenApiOpenAIClient::OpenAIFile
- OpenApiOpenAIClient::OtherChunkingStrategyResponseParam
- OpenApiOpenAIClient::PredictionContent
- OpenApiOpenAIClient::PredictionContentContent
- OpenApiOpenAIClient::Project
- OpenApiOpenAIClient::ProjectApiKey
- OpenApiOpenAIClient::ProjectApiKeyDeleteResponse
- OpenApiOpenAIClient::ProjectApiKeyListResponse
- OpenApiOpenAIClient::ProjectApiKeyOwner
- OpenApiOpenAIClient::ProjectCreateRequest
- OpenApiOpenAIClient::ProjectListResponse
- OpenApiOpenAIClient::ProjectRateLimit
- OpenApiOpenAIClient::ProjectRateLimitListResponse
- OpenApiOpenAIClient::ProjectRateLimitUpdateRequest
- OpenApiOpenAIClient::ProjectServiceAccount
- OpenApiOpenAIClient::ProjectServiceAccountApiKey
- OpenApiOpenAIClient::ProjectServiceAccountCreateRequest
- OpenApiOpenAIClient::ProjectServiceAccountCreateResponse
- OpenApiOpenAIClient::ProjectServiceAccountDeleteResponse
- OpenApiOpenAIClient::ProjectServiceAccountListResponse
- OpenApiOpenAIClient::ProjectUpdateRequest
- OpenApiOpenAIClient::ProjectUser
- OpenApiOpenAIClient::ProjectUserCreateRequest
- OpenApiOpenAIClient::ProjectUserDeleteResponse
- OpenApiOpenAIClient::ProjectUserListResponse
- OpenApiOpenAIClient::ProjectUserUpdateRequest
- OpenApiOpenAIClient::RealtimeClientEventConversationItemCreate
- OpenApiOpenAIClient::RealtimeClientEventConversationItemDelete
- OpenApiOpenAIClient::RealtimeClientEventConversationItemTruncate
- OpenApiOpenAIClient::RealtimeClientEventInputAudioBufferAppend
- OpenApiOpenAIClient::RealtimeClientEventInputAudioBufferClear
- OpenApiOpenAIClient::RealtimeClientEventInputAudioBufferCommit
- OpenApiOpenAIClient::RealtimeClientEventResponseCancel
- OpenApiOpenAIClient::RealtimeClientEventResponseCreate
- OpenApiOpenAIClient::RealtimeClientEventSessionUpdate
- OpenApiOpenAIClient::RealtimeConversationItem
- OpenApiOpenAIClient::RealtimeConversationItemContentInner
- OpenApiOpenAIClient::RealtimeResponse
- OpenApiOpenAIClient::RealtimeResponseCreateParams
- OpenApiOpenAIClient::RealtimeResponseCreateParamsConversation
- OpenApiOpenAIClient::RealtimeResponseCreateParamsMaxResponseOutputTokens
- OpenApiOpenAIClient::RealtimeResponseCreateParamsToolsInner
- OpenApiOpenAIClient::RealtimeResponseStatusDetails
- OpenApiOpenAIClient::RealtimeResponseStatusDetailsError
- OpenApiOpenAIClient::RealtimeResponseUsage
- OpenApiOpenAIClient::RealtimeResponseUsageInputTokenDetails
- OpenApiOpenAIClient::RealtimeResponseUsageOutputTokenDetails
- OpenApiOpenAIClient::RealtimeServerEventConversationCreated
- OpenApiOpenAIClient::RealtimeServerEventConversationCreatedConversation
- OpenApiOpenAIClient::RealtimeServerEventConversationItemCreated
- OpenApiOpenAIClient::RealtimeServerEventConversationItemDeleted
- OpenApiOpenAIClient::RealtimeServerEventConversationItemInputAudioTranscriptionCompleted
- OpenApiOpenAIClient::RealtimeServerEventConversationItemInputAudioTranscriptionFailed
- OpenApiOpenAIClient::RealtimeServerEventConversationItemInputAudioTranscriptionFailedError
- OpenApiOpenAIClient::RealtimeServerEventConversationItemTruncated
- OpenApiOpenAIClient::RealtimeServerEventError
- OpenApiOpenAIClient::RealtimeServerEventErrorError
- OpenApiOpenAIClient::RealtimeServerEventInputAudioBufferCleared
- OpenApiOpenAIClient::RealtimeServerEventInputAudioBufferCommitted
- OpenApiOpenAIClient::RealtimeServerEventInputAudioBufferSpeechStarted
- OpenApiOpenAIClient::RealtimeServerEventInputAudioBufferSpeechStopped
- OpenApiOpenAIClient::RealtimeServerEventRateLimitsUpdated
- OpenApiOpenAIClient::RealtimeServerEventRateLimitsUpdatedRateLimitsInner
- OpenApiOpenAIClient::RealtimeServerEventResponseAudioDelta
- OpenApiOpenAIClient::RealtimeServerEventResponseAudioDone
- OpenApiOpenAIClient::RealtimeServerEventResponseAudioTranscriptDelta
- OpenApiOpenAIClient::RealtimeServerEventResponseAudioTranscriptDone
- OpenApiOpenAIClient::RealtimeServerEventResponseContentPartAdded
- OpenApiOpenAIClient::RealtimeServerEventResponseContentPartAddedPart
- OpenApiOpenAIClient::RealtimeServerEventResponseContentPartDone
- OpenApiOpenAIClient::RealtimeServerEventResponseContentPartDonePart
- OpenApiOpenAIClient::RealtimeServerEventResponseCreated
- OpenApiOpenAIClient::RealtimeServerEventResponseDone
- OpenApiOpenAIClient::RealtimeServerEventResponseFunctionCallArgumentsDelta
- OpenApiOpenAIClient::RealtimeServerEventResponseFunctionCallArgumentsDone
- OpenApiOpenAIClient::RealtimeServerEventResponseOutputItemAdded
- OpenApiOpenAIClient::RealtimeServerEventResponseOutputItemDone
- OpenApiOpenAIClient::RealtimeServerEventResponseTextDelta
- OpenApiOpenAIClient::RealtimeServerEventResponseTextDone
- OpenApiOpenAIClient::RealtimeServerEventSessionCreated
- OpenApiOpenAIClient::RealtimeServerEventSessionUpdated
- OpenApiOpenAIClient::RealtimeSession
- OpenApiOpenAIClient::RealtimeSessionCreateRequest
- OpenApiOpenAIClient::RealtimeSessionCreateRequestTurnDetection
- OpenApiOpenAIClient::RealtimeSessionCreateResponse
- OpenApiOpenAIClient::RealtimeSessionCreateResponseClientSecret
- OpenApiOpenAIClient::RealtimeSessionCreateResponseTurnDetection
- OpenApiOpenAIClient::RealtimeSessionInputAudioTranscription
- OpenApiOpenAIClient::RealtimeSessionModel
- OpenApiOpenAIClient::RealtimeSessionTurnDetection
- OpenApiOpenAIClient::ResponseFormatJsonObject
- OpenApiOpenAIClient::ResponseFormatJsonSchema
- OpenApiOpenAIClient::ResponseFormatJsonSchemaJsonSchema
- OpenApiOpenAIClient::ResponseFormatText
- OpenApiOpenAIClient::RunCompletionUsage
- OpenApiOpenAIClient::RunObject
- OpenApiOpenAIClient::RunObjectIncompleteDetails
- OpenApiOpenAIClient::RunObjectLastError
- OpenApiOpenAIClient::RunObjectRequiredAction
- OpenApiOpenAIClient::RunObjectRequiredActionSubmitToolOutputs
- OpenApiOpenAIClient::RunStepCompletionUsage
- OpenApiOpenAIClient::RunStepDeltaObject
- OpenApiOpenAIClient::RunStepDeltaObjectDelta
- OpenApiOpenAIClient::RunStepDeltaObjectDeltaStepDetails
- OpenApiOpenAIClient::RunStepDeltaStepDetailsMessageCreationObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsMessageCreationObjectMessageCreation
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsInner
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsFileSearchObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsFunctionObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsFunctionObjectFunction
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsObject
- OpenApiOpenAIClient::RunStepDeltaStepDetailsToolCallsObjectToolCallsInner
- OpenApiOpenAIClient::RunStepDetailsMessageCreationObject
- OpenApiOpenAIClient::RunStepDetailsMessageCreationObjectMessageCreation
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeObjectCodeInterpreter
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsInner
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeOutputImageObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeOutputImageObjectImage
- OpenApiOpenAIClient::RunStepDetailsToolCallsCodeOutputLogsObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsFileSearchObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsFileSearchObjectFileSearch
- OpenApiOpenAIClient::RunStepDetailsToolCallsFileSearchRankingOptionsObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsFileSearchResultObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsFileSearchResultObjectContentInner
- OpenApiOpenAIClient::RunStepDetailsToolCallsFunctionObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsFunctionObjectFunction
- OpenApiOpenAIClient::RunStepDetailsToolCallsObject
- OpenApiOpenAIClient::RunStepDetailsToolCallsObjectToolCallsInner
- OpenApiOpenAIClient::RunStepObject
- OpenApiOpenAIClient::RunStepObjectLastError
- OpenApiOpenAIClient::RunStepObjectStepDetails
- OpenApiOpenAIClient::RunStepStreamEvent
- OpenApiOpenAIClient::RunStepStreamEventOneOf
- OpenApiOpenAIClient::RunStepStreamEventOneOf1
- OpenApiOpenAIClient::RunStepStreamEventOneOf2
- OpenApiOpenAIClient::RunStepStreamEventOneOf3
- OpenApiOpenAIClient::RunStepStreamEventOneOf4
- OpenApiOpenAIClient::RunStepStreamEventOneOf5
- OpenApiOpenAIClient::RunStepStreamEventOneOf6
- OpenApiOpenAIClient::RunStreamEvent
- OpenApiOpenAIClient::RunStreamEventOneOf
- OpenApiOpenAIClient::RunStreamEventOneOf1
- OpenApiOpenAIClient::RunStreamEventOneOf2
- OpenApiOpenAIClient::RunStreamEventOneOf3
- OpenApiOpenAIClient::RunStreamEventOneOf4
- OpenApiOpenAIClient::RunStreamEventOneOf5
- OpenApiOpenAIClient::RunStreamEventOneOf6
- OpenApiOpenAIClient::RunStreamEventOneOf7
- OpenApiOpenAIClient::RunStreamEventOneOf8
- OpenApiOpenAIClient::RunStreamEventOneOf9
- OpenApiOpenAIClient::RunToolCallObject
- OpenApiOpenAIClient::RunToolCallObjectFunction
- OpenApiOpenAIClient::StaticChunkingStrategy
- OpenApiOpenAIClient::StaticChunkingStrategyRequestParam
- OpenApiOpenAIClient::StaticChunkingStrategyResponseParam
- OpenApiOpenAIClient::StaticChunkingStrategyStatic
- OpenApiOpenAIClient::SubmitToolOutputsRunRequest
- OpenApiOpenAIClient::SubmitToolOutputsRunRequestToolOutputsInner
- OpenApiOpenAIClient::ThreadObject
- OpenApiOpenAIClient::ThreadStreamEvent
- OpenApiOpenAIClient::TranscriptionSegment
- OpenApiOpenAIClient::TranscriptionWord
- OpenApiOpenAIClient::TruncationObject
- OpenApiOpenAIClient::UpdateVectorStoreRequest
- OpenApiOpenAIClient::Upload
- OpenApiOpenAIClient::UploadPart
- OpenApiOpenAIClient::UsageAudioSpeechesResult
- OpenApiOpenAIClient::UsageAudioTranscriptionsResult
- OpenApiOpenAIClient::UsageCodeInterpreterSessionsResult
- OpenApiOpenAIClient::UsageCompletionsResult
- OpenApiOpenAIClient::UsageEmbeddingsResult
- OpenApiOpenAIClient::UsageImagesResult
- OpenApiOpenAIClient::UsageModerationsResult
- OpenApiOpenAIClient::UsageResponse
- OpenApiOpenAIClient::UsageTimeBucket
- OpenApiOpenAIClient::UsageTimeBucketResultInner
- OpenApiOpenAIClient::UsageVectorStoresResult
- OpenApiOpenAIClient::User
- OpenApiOpenAIClient::UserDeleteResponse
- OpenApiOpenAIClient::UserListResponse
- OpenApiOpenAIClient::UserRoleUpdateRequest
- OpenApiOpenAIClient::VectorStoreExpirationAfter
- OpenApiOpenAIClient::VectorStoreFileBatchObject
- OpenApiOpenAIClient::VectorStoreFileBatchObjectFileCounts
- OpenApiOpenAIClient::VectorStoreFileObject
- OpenApiOpenAIClient::VectorStoreFileObjectChunkingStrategy
- OpenApiOpenAIClient::VectorStoreFileObjectLastError
- OpenApiOpenAIClient::VectorStoreObject
- OpenApiOpenAIClient::VectorStoreObjectFileCounts
Documentation for Authorization
Authentication schemes defined for the API:
ApiKeyAuth
- Type: Bearer authentication