Chat
Completions
Create chat completion
ChatCompletion chat().completions().create(ChatCompletionCreateParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
post /chat/completions
Starting a new project? We recommend trying Responses to take advantage of the latest OpenAI platform features. Compare Chat Completions with Responses.
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.
Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.
Parameters
-
ChatCompletionCreateParams params-
List<ChatCompletionMessageParam> messagesA list of messages comprising the conversation so far. Depending on the model you use, different message types (modalities) are supported, like text, images, and audio.
-
class ChatCompletionDeveloperMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer,
developermessages replace the previoussystemmessages.-
Content contentThe contents of the developer message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; role "developer"constantThe role of the messages author, in this case
developer.DEVELOPER("developer")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionSystemMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer, use
developermessages for this purpose instead.-
Content contentThe contents of the system message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
-
JsonValue; role "system"constantThe role of the messages author, in this case
system.SYSTEM("system")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionUserMessageParam:Messages sent by an end user, containing prompts or additional context information.
-
Content contentThe contents of the user message.
-
String -
List<ChatCompletionContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
class ChatCompletionContentPartInputAudio:Learn about audio inputs.
-
InputAudio inputAudio-
String dataBase64 encoded audio data.
-
Format formatThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
WAV("wav") -
MP3("mp3")
-
-
-
JsonValue; type "input_audio"constantThe type of the content part. Always
input_audio.INPUT_AUDIO("input_audio")
-
-
File-
FileObject file-
Optional<String> fileDataThe base64 encoded file data, used when passing the file to the model as a string.
-
Optional<String> fileIdThe ID of an uploaded file to use as input.
-
Optional<String> filenameThe name of the file, used when passing the file to the model as a string.
-
-
JsonValue; type "file"constantThe type of the content part. Always
file.FILE("file")
-
-
-
-
JsonValue; role "user"constantThe role of the messages author, in this case
user.USER("user")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionAssistantMessageParam:Messages sent by the model in response to user messages.
-
JsonValue; role "assistant"constantThe role of the messages author, in this case
assistant.ASSISTANT("assistant")
-
Optional<Audio> audioData about a previous audio response from the model. Learn more.
-
String idUnique identifier for a previous audio response from the model.
-
-
Optional<Content> contentThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
String -
List<ChatCompletionRequestAssistantMessageContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
class ChatCompletionContentPartRefusal:-
String refusalThe refusal message generated by the model.
-
JsonValue; type "refusal"constantThe type of the content part.
REFUSAL("refusal")
-
-
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Optional<String> refusalThe refusal message by the assistant.
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
class ChatCompletionToolMessageParam:-
Content contentThe contents of the tool message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
-
JsonValue; role "tool"constantThe role of the messages author, in this case
tool.TOOL("tool")
-
String toolCallIdTool call that this message is responding to.
-
-
class ChatCompletionFunctionMessageParam:-
Optional<String> contentThe contents of the function message.
-
String nameThe name of the function to call.
-
JsonValue; role "function"constantThe role of the messages author, in this case
function.FUNCTION("function")
-
-
-
ChatModel modelModel ID used to generate the response, like
gpt-4ooro3. OpenAI offers a wide range of models with different capabilities, performance characteristics, and price points. Refer to the model guide to browse and compare available models.-
GPT_5_4("gpt-5.4") -
GPT_5_4_MINI("gpt-5.4-mini") -
GPT_5_4_NANO("gpt-5.4-nano") -
GPT_5_4_MINI_2026_03_17("gpt-5.4-mini-2026-03-17") -
GPT_5_4_NANO_2026_03_17("gpt-5.4-nano-2026-03-17") -
GPT_5_3_CHAT_LATEST("gpt-5.3-chat-latest") -
GPT_5_2("gpt-5.2") -
GPT_5_2_2025_12_11("gpt-5.2-2025-12-11") -
GPT_5_2_CHAT_LATEST("gpt-5.2-chat-latest") -
GPT_5_2_PRO("gpt-5.2-pro") -
GPT_5_2_PRO_2025_12_11("gpt-5.2-pro-2025-12-11") -
GPT_5_1("gpt-5.1") -
GPT_5_1_2025_11_13("gpt-5.1-2025-11-13") -
GPT_5_1_CODEX("gpt-5.1-codex") -
GPT_5_1_MINI("gpt-5.1-mini") -
GPT_5_1_CHAT_LATEST("gpt-5.1-chat-latest") -
GPT_5("gpt-5") -
GPT_5_MINI("gpt-5-mini") -
GPT_5_NANO("gpt-5-nano") -
GPT_5_2025_08_07("gpt-5-2025-08-07") -
GPT_5_MINI_2025_08_07("gpt-5-mini-2025-08-07") -
GPT_5_NANO_2025_08_07("gpt-5-nano-2025-08-07") -
GPT_5_CHAT_LATEST("gpt-5-chat-latest") -
GPT_4_1("gpt-4.1") -
GPT_4_1_MINI("gpt-4.1-mini") -
GPT_4_1_NANO("gpt-4.1-nano") -
GPT_4_1_2025_04_14("gpt-4.1-2025-04-14") -
GPT_4_1_MINI_2025_04_14("gpt-4.1-mini-2025-04-14") -
GPT_4_1_NANO_2025_04_14("gpt-4.1-nano-2025-04-14") -
O4_MINI("o4-mini") -
O4_MINI_2025_04_16("o4-mini-2025-04-16") -
O3("o3") -
O3_2025_04_16("o3-2025-04-16") -
O3_MINI("o3-mini") -
O3_MINI_2025_01_31("o3-mini-2025-01-31") -
O1("o1") -
O1_2024_12_17("o1-2024-12-17") -
O1_PREVIEW("o1-preview") -
O1_PREVIEW_2024_09_12("o1-preview-2024-09-12") -
O1_MINI("o1-mini") -
O1_MINI_2024_09_12("o1-mini-2024-09-12") -
GPT_4O("gpt-4o") -
GPT_4O_2024_11_20("gpt-4o-2024-11-20") -
GPT_4O_2024_08_06("gpt-4o-2024-08-06") -
GPT_4O_2024_05_13("gpt-4o-2024-05-13") -
GPT_4O_AUDIO_PREVIEW("gpt-4o-audio-preview") -
GPT_4O_AUDIO_PREVIEW_2024_10_01("gpt-4o-audio-preview-2024-10-01") -
GPT_4O_AUDIO_PREVIEW_2024_12_17("gpt-4o-audio-preview-2024-12-17") -
GPT_4O_AUDIO_PREVIEW_2025_06_03("gpt-4o-audio-preview-2025-06-03") -
GPT_4O_MINI_AUDIO_PREVIEW("gpt-4o-mini-audio-preview") -
GPT_4O_MINI_AUDIO_PREVIEW_2024_12_17("gpt-4o-mini-audio-preview-2024-12-17") -
GPT_4O_SEARCH_PREVIEW("gpt-4o-search-preview") -
GPT_4O_MINI_SEARCH_PREVIEW("gpt-4o-mini-search-preview") -
GPT_4O_SEARCH_PREVIEW_2025_03_11("gpt-4o-search-preview-2025-03-11") -
GPT_4O_MINI_SEARCH_PREVIEW_2025_03_11("gpt-4o-mini-search-preview-2025-03-11") -
CHATGPT_4O_LATEST("chatgpt-4o-latest") -
CODEX_MINI_LATEST("codex-mini-latest") -
GPT_4O_MINI("gpt-4o-mini") -
GPT_4O_MINI_2024_07_18("gpt-4o-mini-2024-07-18") -
GPT_4_TURBO("gpt-4-turbo") -
GPT_4_TURBO_2024_04_09("gpt-4-turbo-2024-04-09") -
GPT_4_0125_PREVIEW("gpt-4-0125-preview") -
GPT_4_TURBO_PREVIEW("gpt-4-turbo-preview") -
GPT_4_1106_PREVIEW("gpt-4-1106-preview") -
GPT_4_VISION_PREVIEW("gpt-4-vision-preview") -
GPT_4("gpt-4") -
GPT_4_0314("gpt-4-0314") -
GPT_4_0613("gpt-4-0613") -
GPT_4_32K("gpt-4-32k") -
GPT_4_32K_0314("gpt-4-32k-0314") -
GPT_4_32K_0613("gpt-4-32k-0613") -
GPT_3_5_TURBO("gpt-3.5-turbo") -
GPT_3_5_TURBO_16K("gpt-3.5-turbo-16k") -
GPT_3_5_TURBO_0301("gpt-3.5-turbo-0301") -
GPT_3_5_TURBO_0613("gpt-3.5-turbo-0613") -
GPT_3_5_TURBO_1106("gpt-3.5-turbo-1106") -
GPT_3_5_TURBO_0125("gpt-3.5-turbo-0125") -
GPT_3_5_TURBO_16K_0613("gpt-3.5-turbo-16k-0613")
-
-
Optional<ChatCompletionAudioParam> audioParameters for audio output. Required when audio output is requested with
modalities: ["audio"]. Learn more. -
Optional<Double> frequencyPenaltyNumber between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
-
Optional<FunctionCall> functionCallDeprecated in favor of
tool_choice.Controls which (if any) function is called by the model.
nonemeans the model will not call a function and instead generates a message.automeans the model can pick between generating a message or calling a function.Specifying a particular function via
{"name": "my_function"}forces the model to call that function.noneis the default when no functions are present.autois the default if functions are present.-
enum FunctionCallMode:nonemeans the model will not call a function and instead generates a message.automeans the model can pick between generating a message or calling a function.-
NONE("none") -
AUTO("auto")
-
-
class ChatCompletionFunctionCallOption:Specifying a particular function via
{"name": "my_function"}forces the model to call that function.-
String nameThe name of the function to call.
-
-
-
Optional<List<Function>> functionsDeprecated in favor of
tools.A list of functions the model may generate JSON inputs for.
-
String nameThe name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Optional<String> descriptionA description of what the function does, used by the model to choose when and how to call the function.
-
Optional<FunctionParameters> parametersThe parameters the functions accepts, described as a JSON Schema object. See the guide for examples, and the JSON Schema reference for documentation about the format.
Omitting
parametersdefines a function with an empty parameter list.
-
-
Optional<LogitBias> logitBiasModify the likelihood of specified tokens appearing in the completion.
Accepts a JSON object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token.
-
Optional<Boolean> logprobsWhether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the
contentofmessage. -
Optional<Long> maxCompletionTokensAn upper bound for the number of tokens that can be generated for a completion, including visible output tokens and reasoning tokens.
-
Optional<Long> maxTokensThe maximum number of tokens that can be generated in the chat completion. This value can be used to control costs for text generated via API.
This value is now deprecated in favor of
max_completion_tokens, and is not compatible with o-series models. -
Optional<Metadata> metadataSet of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.
Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.
-
Optional<List<Modality>> modalitiesOutput types that you would like the model to generate. Most models are capable of generating text, which is the default:
["text"]The
gpt-4o-audio-previewmodel can also be used to generate audio. To request that this model generate both text and audio responses, you can use:["text", "audio"]-
TEXT("text") -
AUDIO("audio")
-
-
Optional<Moderation> moderationConfiguration for running moderation on the request input and generated output.
-
String modelThe moderation model to use for moderated completions, e.g. 'omni-moderation-latest'.
-
-
Optional<Long> nHow many chat completion choices to generate for each input message. Note that you will be charged based on the number of generated tokens across all of the choices. Keep
nas1to minimize costs. -
Optional<Boolean> parallelToolCallsWhether to enable parallel function calling during tool use.
-
Optional<ChatCompletionPredictionContent> predictionStatic predicted output content, such as the content of a text file that is being regenerated.
-
Optional<Double> presencePenaltyNumber between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.
-
Optional<String> promptCacheKeyUsed by OpenAI to cache responses for similar requests to optimize your cache hit rates. Replaces the
userfield. Learn more. -
Optional<PromptCacheRetention> promptCacheRetentionThe retention policy for the prompt cache. Set to
24hto enable extended prompt caching, which keeps cached prefixes active for longer, up to a maximum of 24 hours. Learn more. Forgpt-5.5,gpt-5.5-pro, and future models, only24his supported.For older models that support both
in_memoryand24h, the default depends on your organization's data retention policy:-
Organizations without ZDR enabled default to
24h. -
Organizations with ZDR enabled default to
in_memorywhenprompt_cache_retentionis not specified. -
IN_MEMORY("in_memory") -
_24H("24h")
-
-
Optional<ReasoningEffort> reasoningEffortConstrains effort on reasoning for reasoning models. Currently supported values are
none,minimal,low,medium,high, andxhigh. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.gpt-5.1defaults tonone, which does not perform reasoning. The supported reasoning values forgpt-5.1arenone,low,medium, andhigh. Tool calls are supported for all reasoning values in gpt-5.1.- All models before
gpt-5.1default tomediumreasoning effort, and do not supportnone. - The
gpt-5-promodel defaults to (and only supports)highreasoning effort. xhighis supported for all models aftergpt-5.1-codex-max.
-
Optional<ResponseFormat> responseFormatAn object specifying the format that the model must output.
Setting to
{ "type": "json_schema", "json_schema": {...} }enables Structured Outputs which ensures the model will match your supplied JSON schema. Learn more in the Structured Outputs guide.Setting to
{ "type": "json_object" }enables the older JSON mode, which ensures the message the model generates is valid JSON. Usingjson_schemais preferred for models that support it.-
class ResponseFormatText:Default response format. Used to generate text responses.
-
JsonValue; type "text"constantThe type of response format being defined. Always
text.TEXT("text")
-
-
class ResponseFormatJsonSchema:JSON Schema response format. Used to generate structured JSON responses. Learn more about Structured Outputs.
-
JsonSchema jsonSchemaStructured Outputs configuration options, including a JSON Schema.
-
String nameThe name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Optional<String> descriptionA description of what the response format is for, used by the model to determine how to respond in the format.
-
Optional<Schema> schemaThe schema for the response format, described as a JSON Schema object. Learn how to build JSON schemas here.
-
Optional<Boolean> strictWhether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the
schemafield. Only a subset of JSON Schema is supported whenstrictistrue. To learn more, read the Structured Outputs guide.
-
-
JsonValue; type "json_schema"constantThe type of response format being defined. Always
json_schema.JSON_SCHEMA("json_schema")
-
-
class ResponseFormatJsonObject:JSON object response format. An older method of generating JSON responses. Using
json_schemais recommended for models that support it. Note that the model will not generate JSON without a system or user message instructing it to do so.-
JsonValue; type "json_object"constantThe type of response format being defined. Always
json_object.JSON_OBJECT("json_object")
-
-
-
Optional<String> safetyIdentifierA stable identifier used to help detect users of your application that may be violating OpenAI's usage policies. The IDs should be a string that uniquely identifies each user, with a maximum length of 64 characters. We recommend hashing their username or email address, in order to avoid sending us any identifying information. Learn more.
-
Optional<Long> seedThis feature is in Beta. If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same
seedand parameters should return the same result. Determinism is not guaranteed, and you should refer to thesystem_fingerprintresponse parameter to monitor changes in the backend. -
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<Stop> stopNot supported with latest reasoning models
o3ando4-mini.Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
-
String -
List<String>
-
-
Optional<Boolean> storeWhether or not to store the output of this chat completion request for use in our model distillation or evals products.
Supports text and image inputs. Note: image inputs over 8MB will be dropped.
-
Optional<ChatCompletionStreamOptions> streamOptionsOptions for streaming response. Only set this when you set
stream: true. -
Optional<Double> temperatureWhat sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or
top_pbut not both. -
Optional<ChatCompletionToolChoiceOption> toolChoiceControls which (if any) tool is called by the model.
nonemeans the model will not call any tool and instead generates a message.automeans the model can pick between generating a message or calling one or more tools.requiredmeans the model must call one or more tools. Specifying a particular tool via{"type": "function", "function": {"name": "my_function"}}forces the model to call that tool.noneis the default when no tools are present.autois the default if tools are present. -
Optional<List<ChatCompletionTool>> toolsA list of tools the model may call. You can provide either custom tools or function tools.
-
class ChatCompletionFunctionTool:A function tool that can be used to generate a response.
-
FunctionDefinition function-
String nameThe name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Optional<String> descriptionA description of what the function does, used by the model to choose when and how to call the function.
-
Optional<FunctionParameters> parametersThe parameters the functions accepts, described as a JSON Schema object. See the guide for examples, and the JSON Schema reference for documentation about the format.
Omitting
parametersdefines a function with an empty parameter list. -
Optional<Boolean> strictWhether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the
parametersfield. Only a subset of JSON Schema is supported whenstrictistrue. Learn more about Structured Outputs in the function calling guide.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionCustomTool:A custom tool that processes input using a specified format.
-
Custom customProperties of the custom tool.
-
String nameThe name of the custom tool, used to identify it in tool calls.
-
Optional<String> descriptionOptional description of the custom tool, used to provide more context.
-
Optional<Format> formatThe input format for the custom tool. Default is unconstrained text.
-
JsonValue;-
JsonValue; type "text"constantUnconstrained text format. Always
text.TEXT("text")
-
-
class Grammar:A grammar defined by the user.
-
InnerGrammar grammarYour chosen grammar.
-
String definitionThe grammar definition.
-
Syntax syntaxThe syntax of the grammar definition. One of
larkorregex.-
LARK("lark") -
REGEX("regex")
-
-
-
JsonValue; type "grammar"constantGrammar format. Always
grammar.GRAMMAR("grammar")
-
-
-
-
JsonValue; type "custom"constantThe type of the custom tool. Always
custom.CUSTOM("custom")
-
-
-
Optional<Long> topLogprobsAn integer between 0 and 20 specifying the maximum number of most likely tokens to return at each token position, each with an associated log probability. In some cases, the number of returned tokens may be fewer than requested.
logprobsmust be set totrueif this parameter is used. -
Optional<Double> topPAn alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
We generally recommend altering this or
temperaturebut not both. -
Optional<String> userThis field is being replaced by
safety_identifierandprompt_cache_key. Useprompt_cache_keyinstead to maintain caching optimizations. A stable identifier for your end-users. Used to boost cache hit rates by better bucketing similar requests and to help OpenAI detect and prevent abuse. Learn more. -
Optional<Verbosity> verbosityConstrains the verbosity of the model's response. Lower values will result in more concise responses, while higher values will result in more verbose responses. Currently supported values are
low,medium, andhigh.-
LOW("low") -
MEDIUM("medium") -
HIGH("high")
-
-
Optional<WebSearchOptions> webSearchOptionsThis tool searches the web for relevant results to use in a response. Learn more about the web search tool.
-
Optional<SearchContextSize> searchContextSizeHigh level guidance for the amount of context window space to use for the search. One of
low,medium, orhigh.mediumis the default.-
LOW("low") -
MEDIUM("medium") -
HIGH("high")
-
-
Optional<UserLocation> userLocationApproximate location parameters for the search.
-
Approximate approximateApproximate location parameters for the search.
-
Optional<String> cityFree text input for the city of the user, e.g.
San Francisco. -
Optional<String> countryThe two-letter ISO country code of the user, e.g.
US. -
Optional<String> regionFree text input for the region of the user, e.g.
California. -
Optional<String> timezoneThe IANA timezone of the user, e.g.
America/Los_Angeles.
-
-
JsonValue; type "approximate"constantThe type of location approximation. Always
approximate.APPROXIMATE("approximate")
-
-
-
Returns
-
class ChatCompletion:Represents a chat completion response returned by model, based on the provided input.
-
String idA unique identifier for the chat completion.
-
List<Choice> choicesA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function. Read the Model Spec for more.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
ChatCompletionMessage messageA chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created.
-
String modelThe model used for the chat completion.
-
JsonValue; object_ "chat.completion"constantThe object type, which is always
chat.completion.CHAT_COMPLETION("chat.completion")
-
Optional<Moderation> moderationModeration results for the request input and generated output, if moderated completions were requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageUsage statistics for the completion request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.ChatModel;
import com.openai.models.chat.completions.ChatCompletion;
import com.openai.models.chat.completions.ChatCompletionCreateParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
ChatCompletionCreateParams params = ChatCompletionCreateParams.builder()
.addDeveloperMessage("string")
.model(ChatModel.GPT_5_4)
.build();
ChatCompletion chatCompletion = client.chat().completions().create(params);
}
}
Response
{
"id": "id",
"choices": [
{
"finish_reason": "stop",
"index": 0,
"logprobs": {
"content": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
],
"refusal": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
]
},
"message": {
"content": "content",
"refusal": "refusal",
"role": "assistant",
"annotations": [
{
"type": "url_citation",
"url_citation": {
"end_index": 0,
"start_index": 0,
"title": "title",
"url": "https://example.com"
}
}
],
"audio": {
"id": "id",
"data": "data",
"expires_at": 0,
"transcript": "transcript"
},
"function_call": {
"arguments": "arguments",
"name": "name"
},
"tool_calls": [
{
"id": "id",
"function": {
"arguments": "arguments",
"name": "name"
},
"type": "function"
}
]
}
}
],
"created": 0,
"model": "model",
"object": "chat.completion",
"moderation": {
"input": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
},
"output": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
}
},
"service_tier": "auto",
"system_fingerprint": "system_fingerprint",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0,
"completion_tokens_details": {
"accepted_prediction_tokens": 0,
"audio_tokens": 0,
"reasoning_tokens": 0,
"rejected_prediction_tokens": 0
},
"prompt_tokens_details": {
"audio_tokens": 0,
"cached_tokens": 0
}
}
}
List Chat Completions
ChatCompletionListPage chat().completions().list(ChatCompletionListParamsparams = ChatCompletionListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
get /chat/completions
List stored Chat Completions. Only Chat Completions that have been stored
with the store parameter set to true will be returned.
Parameters
-
ChatCompletionListParams params-
Optional<String> afterIdentifier for the last chat completion from the previous pagination request.
-
Optional<Long> limitNumber of Chat Completions to retrieve.
-
Optional<Metadata> metadataA list of metadata keys to filter the Chat Completions by. Example:
metadata[key1]=value1&metadata[key2]=value2 -
Optional<String> modelThe model used to generate the Chat Completions.
-
Optional<Order> orderSort order for Chat Completions by timestamp. Use
ascfor ascending order ordescfor descending order. Defaults toasc.-
ASC("asc") -
DESC("desc")
-
-
Returns
-
class ChatCompletion:Represents a chat completion response returned by model, based on the provided input.
-
String idA unique identifier for the chat completion.
-
List<Choice> choicesA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function. Read the Model Spec for more.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
ChatCompletionMessage messageA chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created.
-
String modelThe model used for the chat completion.
-
JsonValue; object_ "chat.completion"constantThe object type, which is always
chat.completion.CHAT_COMPLETION("chat.completion")
-
Optional<Moderation> moderationModeration results for the request input and generated output, if moderated completions were requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageUsage statistics for the completion request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.ChatCompletionListPage;
import com.openai.models.chat.completions.ChatCompletionListParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
ChatCompletionListPage page = client.chat().completions().list();
}
}
Response
{
"data": [
{
"id": "id",
"choices": [
{
"finish_reason": "stop",
"index": 0,
"logprobs": {
"content": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
],
"refusal": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
]
},
"message": {
"content": "content",
"refusal": "refusal",
"role": "assistant",
"annotations": [
{
"type": "url_citation",
"url_citation": {
"end_index": 0,
"start_index": 0,
"title": "title",
"url": "https://example.com"
}
}
],
"audio": {
"id": "id",
"data": "data",
"expires_at": 0,
"transcript": "transcript"
},
"function_call": {
"arguments": "arguments",
"name": "name"
},
"tool_calls": [
{
"id": "id",
"function": {
"arguments": "arguments",
"name": "name"
},
"type": "function"
}
]
}
}
],
"created": 0,
"model": "model",
"object": "chat.completion",
"moderation": {
"input": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
},
"output": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
}
},
"service_tier": "auto",
"system_fingerprint": "system_fingerprint",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0,
"completion_tokens_details": {
"accepted_prediction_tokens": 0,
"audio_tokens": 0,
"reasoning_tokens": 0,
"rejected_prediction_tokens": 0
},
"prompt_tokens_details": {
"audio_tokens": 0,
"cached_tokens": 0
}
}
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}
Get chat completion
ChatCompletion chat().completions().retrieve(ChatCompletionRetrieveParamsparams = ChatCompletionRetrieveParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
get /chat/completions/{completion_id}
Get a stored chat completion. Only Chat Completions that have been created
with the store parameter set to true will be returned.
Parameters
-
ChatCompletionRetrieveParams paramsOptional<String> completionId
Returns
-
class ChatCompletion:Represents a chat completion response returned by model, based on the provided input.
-
String idA unique identifier for the chat completion.
-
List<Choice> choicesA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function. Read the Model Spec for more.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
ChatCompletionMessage messageA chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created.
-
String modelThe model used for the chat completion.
-
JsonValue; object_ "chat.completion"constantThe object type, which is always
chat.completion.CHAT_COMPLETION("chat.completion")
-
Optional<Moderation> moderationModeration results for the request input and generated output, if moderated completions were requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageUsage statistics for the completion request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.ChatCompletion;
import com.openai.models.chat.completions.ChatCompletionRetrieveParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
ChatCompletion chatCompletion = client.chat().completions().retrieve("completion_id");
}
}
Response
{
"id": "id",
"choices": [
{
"finish_reason": "stop",
"index": 0,
"logprobs": {
"content": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
],
"refusal": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
]
},
"message": {
"content": "content",
"refusal": "refusal",
"role": "assistant",
"annotations": [
{
"type": "url_citation",
"url_citation": {
"end_index": 0,
"start_index": 0,
"title": "title",
"url": "https://example.com"
}
}
],
"audio": {
"id": "id",
"data": "data",
"expires_at": 0,
"transcript": "transcript"
},
"function_call": {
"arguments": "arguments",
"name": "name"
},
"tool_calls": [
{
"id": "id",
"function": {
"arguments": "arguments",
"name": "name"
},
"type": "function"
}
]
}
}
],
"created": 0,
"model": "model",
"object": "chat.completion",
"moderation": {
"input": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
},
"output": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
}
},
"service_tier": "auto",
"system_fingerprint": "system_fingerprint",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0,
"completion_tokens_details": {
"accepted_prediction_tokens": 0,
"audio_tokens": 0,
"reasoning_tokens": 0,
"rejected_prediction_tokens": 0
},
"prompt_tokens_details": {
"audio_tokens": 0,
"cached_tokens": 0
}
}
}
Update chat completion
ChatCompletion chat().completions().update(ChatCompletionUpdateParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
post /chat/completions/{completion_id}
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.
Parameters
-
ChatCompletionUpdateParams params-
Optional<String> completionId -
Optional<Metadata> metadataSet of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.
Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.
-
Returns
-
class ChatCompletion:Represents a chat completion response returned by model, based on the provided input.
-
String idA unique identifier for the chat completion.
-
List<Choice> choicesA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function. Read the Model Spec for more.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
ChatCompletionMessage messageA chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created.
-
String modelThe model used for the chat completion.
-
JsonValue; object_ "chat.completion"constantThe object type, which is always
chat.completion.CHAT_COMPLETION("chat.completion")
-
Optional<Moderation> moderationModeration results for the request input and generated output, if moderated completions were requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageUsage statistics for the completion request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.core.JsonValue;
import com.openai.models.chat.completions.ChatCompletion;
import com.openai.models.chat.completions.ChatCompletionUpdateParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
ChatCompletionUpdateParams params = ChatCompletionUpdateParams.builder()
.completionId("completion_id")
.metadata(ChatCompletionUpdateParams.Metadata.builder()
.putAdditionalProperty("foo", JsonValue.from("string"))
.build())
.build();
ChatCompletion chatCompletion = client.chat().completions().update(params);
}
}
Response
{
"id": "id",
"choices": [
{
"finish_reason": "stop",
"index": 0,
"logprobs": {
"content": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
],
"refusal": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0,
"top_logprobs": [
{
"token": "token",
"bytes": [
0
],
"logprob": 0
}
]
}
]
},
"message": {
"content": "content",
"refusal": "refusal",
"role": "assistant",
"annotations": [
{
"type": "url_citation",
"url_citation": {
"end_index": 0,
"start_index": 0,
"title": "title",
"url": "https://example.com"
}
}
],
"audio": {
"id": "id",
"data": "data",
"expires_at": 0,
"transcript": "transcript"
},
"function_call": {
"arguments": "arguments",
"name": "name"
},
"tool_calls": [
{
"id": "id",
"function": {
"arguments": "arguments",
"name": "name"
},
"type": "function"
}
]
}
}
],
"created": 0,
"model": "model",
"object": "chat.completion",
"moderation": {
"input": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
},
"output": {
"model": "model",
"results": [
{
"categories": {
"foo": true
},
"category_applied_input_types": {
"foo": [
"text"
]
},
"category_scores": {
"foo": 0
},
"flagged": true,
"model": "model",
"type": "moderation_result"
}
],
"type": "moderation_results"
}
},
"service_tier": "auto",
"system_fingerprint": "system_fingerprint",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0,
"completion_tokens_details": {
"accepted_prediction_tokens": 0,
"audio_tokens": 0,
"reasoning_tokens": 0,
"rejected_prediction_tokens": 0
},
"prompt_tokens_details": {
"audio_tokens": 0,
"cached_tokens": 0
}
}
}
Delete chat completion
ChatCompletionDeleted chat().completions().delete(ChatCompletionDeleteParamsparams = ChatCompletionDeleteParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
delete /chat/completions/{completion_id}
Delete a stored chat completion. Only Chat Completions that have been
created with the store parameter set to true can be deleted.
Parameters
-
ChatCompletionDeleteParams paramsOptional<String> completionId
Returns
-
class ChatCompletionDeleted:-
String idThe ID of the chat completion that was deleted.
-
boolean deletedWhether the chat completion was deleted.
-
JsonValue; object_ "chat.completion.deleted"constantThe type of object being deleted.
CHAT_COMPLETION_DELETED("chat.completion.deleted")
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.ChatCompletionDeleteParams;
import com.openai.models.chat.completions.ChatCompletionDeleted;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
ChatCompletionDeleted chatCompletionDeleted = client.chat().completions().delete("completion_id");
}
}
Response
{
"id": "id",
"deleted": true,
"object": "chat.completion.deleted"
}
Domain Types
Chat Completion
-
class ChatCompletion:Represents a chat completion response returned by model, based on the provided input.
-
String idA unique identifier for the chat completion.
-
List<Choice> choicesA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function. Read the Model Spec for more.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
ChatCompletionMessage messageA chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created.
-
String modelThe model used for the chat completion.
-
JsonValue; object_ "chat.completion"constantThe object type, which is always
chat.completion.CHAT_COMPLETION("chat.completion")
-
Optional<Moderation> moderationModeration results for the request input and generated output, if moderated completions were requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageUsage statistics for the completion request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Chat Completion Allowed Tool Choice
-
class ChatCompletionAllowedToolChoice:Constrains the tools available to the model to a pre-defined set.
-
ChatCompletionAllowedTools allowedToolsConstrains the tools available to the model to a pre-defined set.
-
Mode modeConstrains the tools available to the model to a pre-defined set.
autoallows the model to pick from among the allowed tools and generate a message.requiredrequires the model to call one or more of the allowed tools.-
AUTO("auto") -
REQUIRED("required")
-
-
List<Tool> toolsA list of tool definitions that the model should be allowed to call.
For the Chat Completions API, the list of tool definitions might look like:
[ { "type": "function", "function": { "name": "get_weather" } }, { "type": "function", "function": { "name": "get_time" } } ]
-
-
JsonValue; type "allowed_tools"constantAllowed tool configuration type. Always
allowed_tools.ALLOWED_TOOLS("allowed_tools")
-
Chat Completion Assistant Message Param
-
class ChatCompletionAssistantMessageParam:Messages sent by the model in response to user messages.
-
JsonValue; role "assistant"constantThe role of the messages author, in this case
assistant.ASSISTANT("assistant")
-
Optional<Audio> audioData about a previous audio response from the model. Learn more.
-
String idUnique identifier for a previous audio response from the model.
-
-
Optional<Content> contentThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
String -
List<ChatCompletionRequestAssistantMessageContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
class ChatCompletionContentPartRefusal:-
String refusalThe refusal message generated by the model.
-
JsonValue; type "refusal"constantThe type of the content part.
REFUSAL("refusal")
-
-
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Optional<String> refusalThe refusal message by the assistant.
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
Chat Completion Audio
-
class ChatCompletionAudio:If the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
Chat Completion Audio Param
-
class ChatCompletionAudioParam:Parameters for audio output. Required when audio output is requested with
modalities: ["audio"]. Learn more.-
Format formatSpecifies the output audio format. Must be one of
wav,mp3,flac,opus, orpcm16.-
WAV("wav") -
AAC("aac") -
MP3("mp3") -
FLAC("flac") -
OPUS("opus") -
PCM16("pcm16")
-
-
Voice voiceThe voice the model uses to respond. Supported built-in voices are
alloy,ash,ballad,coral,echo,fable,nova,onyx,sage,shimmer,marin, andcedar. You may also provide a custom voice object with anid, for example{ "id": "voice_1234" }.-
String -
enum UnionMember1:-
ALLOY("alloy") -
ASH("ash") -
BALLAD("ballad") -
CORAL("coral") -
ECHO("echo") -
SAGE("sage") -
SHIMMER("shimmer") -
VERSE("verse") -
MARIN("marin") -
CEDAR("cedar")
-
-
class Id:Custom voice reference.
-
String idThe custom voice ID, e.g.
voice_1234.
-
-
-
Chat Completion Chunk
-
class ChatCompletionChunk:Represents a streamed chunk of a chat completion response returned by the model, based on the provided input. Learn more.
-
String idA unique identifier for the chat completion. Each chunk has the same ID.
-
List<Choice> choicesA list of chat completion choices. Can contain more than one elements if
nis greater than 1. Can also be empty for the last chunk if you setstream_options: {"include_usage": true}.-
Delta deltaA chat completion delta generated by streamed model responses.
-
Optional<String> contentThe contents of the chunk message.
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Optional<String> argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
Optional<String> nameThe name of the function to call.
-
-
Optional<String> refusalThe refusal message generated by the model.
-
Optional<Role> roleThe role of the author of this message.
-
DEVELOPER("developer") -
SYSTEM("system") -
USER("user") -
ASSISTANT("assistant") -
TOOL("tool")
-
-
Optional<List<ToolCall>> toolCalls-
long index -
Optional<String> idThe ID of the tool call.
-
Optional<Function> function-
Optional<String> argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
Optional<String> nameThe name of the function to call.
-
-
Optional<Type> typeThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
-
Optional<FinishReason> finishReasonThe reason the model stopped generating tokens. This will be
stopif the model hit a natural stop point or a provided stop sequence,lengthif the maximum number of tokens specified in the request was reached,content_filterif content was omitted due to a flag from our content filters,tool_callsif the model called a tool, orfunction_call(deprecated) if the model called a function.-
STOP("stop") -
LENGTH("length") -
TOOL_CALLS("tool_calls") -
CONTENT_FILTER("content_filter") -
FUNCTION_CALL("function_call")
-
-
long indexThe index of the choice in the list of choices.
-
Optional<Logprobs> logprobsLog probability information for the choice.
-
Optional<List<ChatCompletionTokenLogprob>> contentA list of message content tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
-
Optional<List<ChatCompletionTokenLogprob>> refusalA list of message refusal tokens with log probability information.
-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.
-
-
-
-
long createdThe Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.
-
String modelThe model to generate the completion.
-
JsonValue; object_ "chat.completion.chunk"constantThe object type, which is always
chat.completion.chunk.CHAT_COMPLETION_CHUNK("chat.completion.chunk")
-
Optional<Moderation> moderationModeration results for the request input and generated output. Present on the moderation chunk when moderated completions are requested.
-
Input inputModeration for the request input.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
Output outputModeration for the generated output.
-
class ModerationResults:Successful moderation results for the request input or generated output.
-
String modelThe moderation model used to generate the results.
-
List<Result> resultsA list of moderation results.
-
Categories categoriesA dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes categoryAppliedInputTypesWhich modalities of input are reflected by the score for each category.
-
TEXT("text") -
IMAGE("image")
-
-
CategoryScores categoryScoresA dictionary of moderation categories to scores.
-
boolean flaggedA boolean indicating whether the content was flagged by any category.
-
String modelThe moderation model that produced this result.
-
JsonValue; type "moderation_result"constantThe object type, which was always
moderation_resultfor successful moderation results.MODERATION_RESULT("moderation_result")
-
-
JsonValue; type "moderation_results"constantThe object type, which is always
moderation_results.MODERATION_RESULTS("moderation_results")
-
-
class Error:An error produced while attempting moderation.
-
String codeThe error code.
-
String messageThe error message.
-
JsonValue; type "error"constantThe object type, which is always
error.ERROR("error")
-
-
-
-
Optional<ServiceTier> serviceTierSpecifies the processing type used for serving the request.
- If set to 'auto', then the request will be processed with the service tier configured in the Project settings. Unless otherwise configured, the Project will use 'default'.
- If set to 'default', then the request will be processed with the standard pricing and performance for the selected model.
- If set to 'flex' or 'priority', then the request will be processed with the corresponding service tier.
- When not set, the default behavior is 'auto'.
When the
service_tierparameter is set, the response body will include theservice_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.-
AUTO("auto") -
DEFAULT("default") -
FLEX("flex") -
SCALE("scale") -
PRIORITY("priority")
-
Optional<String> systemFingerprintThis fingerprint represents the backend configuration that the model runs with. Can be used in conjunction with the
seedrequest parameter to understand when backend changes have been made that might impact determinism. -
Optional<CompletionUsage> usageAn optional field that will only be present when you set
stream_options: {"include_usage": true}in your request. When present, it contains a null value except for the last chunk which contains the token usage statistics for the entire request.NOTE: If the stream is interrupted or cancelled, you may not receive the final usage chunk which contains the total token usage for the request.
-
long completionTokensNumber of tokens in the generated completion.
-
long promptTokensNumber of tokens in the prompt.
-
long totalTokensTotal number of tokens used in the request (prompt + completion).
-
Optional<CompletionTokensDetails> completionTokensDetailsBreakdown of tokens used in a completion.
-
Optional<Long> acceptedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
Optional<Long> audioTokensAudio input tokens generated by the model.
-
Optional<Long> reasoningTokensTokens generated by the model for reasoning.
-
Optional<Long> rejectedPredictionTokensWhen using Predicted Outputs, the number of tokens in the prediction that did not appear in the completion. However, like reasoning tokens, these tokens are still counted in the total completion tokens for purposes of billing, output, and context window limits.
-
-
Optional<PromptTokensDetails> promptTokensDetailsBreakdown of tokens used in the prompt.
-
Optional<Long> audioTokensAudio input tokens present in the prompt.
-
Optional<Long> cachedTokensCached tokens present in the prompt.
-
-
-
Chat Completion Content Part
-
class ChatCompletionContentPart: A class that can be one of several variants.unionLearn about text inputs.
-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
class ChatCompletionContentPartInputAudio:Learn about audio inputs.
-
InputAudio inputAudio-
String dataBase64 encoded audio data.
-
Format formatThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
WAV("wav") -
MP3("mp3")
-
-
-
JsonValue; type "input_audio"constantThe type of the content part. Always
input_audio.INPUT_AUDIO("input_audio")
-
-
File-
FileObject file-
Optional<String> fileDataThe base64 encoded file data, used when passing the file to the model as a string.
-
Optional<String> fileIdThe ID of an uploaded file to use as input.
-
Optional<String> filenameThe name of the file, used when passing the file to the model as a string.
-
-
JsonValue; type "file"constantThe type of the content part. Always
file.FILE("file")
-
-
Chat Completion Content Part Image
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
Chat Completion Content Part Input Audio
-
class ChatCompletionContentPartInputAudio:Learn about audio inputs.
-
InputAudio inputAudio-
String dataBase64 encoded audio data.
-
Format formatThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
WAV("wav") -
MP3("mp3")
-
-
-
JsonValue; type "input_audio"constantThe type of the content part. Always
input_audio.INPUT_AUDIO("input_audio")
-
Chat Completion Content Part Refusal
-
class ChatCompletionContentPartRefusal:-
String refusalThe refusal message generated by the model.
-
JsonValue; type "refusal"constantThe type of the content part.
REFUSAL("refusal")
-
Chat Completion Content Part Text
-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
Chat Completion Custom Tool
-
class ChatCompletionCustomTool:A custom tool that processes input using a specified format.
-
Custom customProperties of the custom tool.
-
String nameThe name of the custom tool, used to identify it in tool calls.
-
Optional<String> descriptionOptional description of the custom tool, used to provide more context.
-
Optional<Format> formatThe input format for the custom tool. Default is unconstrained text.
-
JsonValue;-
JsonValue; type "text"constantUnconstrained text format. Always
text.TEXT("text")
-
-
class Grammar:A grammar defined by the user.
-
InnerGrammar grammarYour chosen grammar.
-
String definitionThe grammar definition.
-
Syntax syntaxThe syntax of the grammar definition. One of
larkorregex.-
LARK("lark") -
REGEX("regex")
-
-
-
JsonValue; type "grammar"constantGrammar format. Always
grammar.GRAMMAR("grammar")
-
-
-
-
JsonValue; type "custom"constantThe type of the custom tool. Always
custom.CUSTOM("custom")
-
Chat Completion Deleted
-
class ChatCompletionDeleted:-
String idThe ID of the chat completion that was deleted.
-
boolean deletedWhether the chat completion was deleted.
-
JsonValue; object_ "chat.completion.deleted"constantThe type of object being deleted.
CHAT_COMPLETION_DELETED("chat.completion.deleted")
-
Chat Completion Developer Message Param
-
class ChatCompletionDeveloperMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer,
developermessages replace the previoussystemmessages.-
Content contentThe contents of the developer message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; role "developer"constantThe role of the messages author, in this case
developer.DEVELOPER("developer")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Function Call Option
-
class ChatCompletionFunctionCallOption:Specifying a particular function via
{"name": "my_function"}forces the model to call that function.-
String nameThe name of the function to call.
-
Chat Completion Function Message Param
-
class ChatCompletionFunctionMessageParam:-
Optional<String> contentThe contents of the function message.
-
String nameThe name of the function to call.
-
JsonValue; role "function"constantThe role of the messages author, in this case
function.FUNCTION("function")
-
Chat Completion Function Tool
-
class ChatCompletionFunctionTool:A function tool that can be used to generate a response.
-
FunctionDefinition function-
String nameThe name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Optional<String> descriptionA description of what the function does, used by the model to choose when and how to call the function.
-
Optional<FunctionParameters> parametersThe parameters the functions accepts, described as a JSON Schema object. See the guide for examples, and the JSON Schema reference for documentation about the format.
Omitting
parametersdefines a function with an empty parameter list. -
Optional<Boolean> strictWhether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the
parametersfield. Only a subset of JSON Schema is supported whenstrictistrue. Learn more about Structured Outputs in the function calling guide.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
Chat Completion Message
-
class ChatCompletionMessage:A chat completion message generated by the model.
-
Optional<String> contentThe contents of the message.
-
Optional<String> refusalThe refusal message generated by the model.
-
JsonValue; role "assistant"constantThe role of the author of this message.
ASSISTANT("assistant")
-
Optional<List<Annotation>> annotationsAnnotations for the message, when applicable, as when using the web search tool.
-
JsonValue; type "url_citation"constantThe type of the URL citation. Always
url_citation.URL_CITATION("url_citation")
-
UrlCitation urlCitationA URL citation when using web search.
-
long endIndexThe index of the last character of the URL citation in the message.
-
long startIndexThe index of the first character of the URL citation in the message.
-
String titleThe title of the web resource.
-
String urlThe URL of the web resource.
-
-
-
Optional<ChatCompletionAudio> audioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
String idUnique identifier for this audio response.
-
String dataBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
long expiresAtThe Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
String transcriptTranscript of the audio generated by the model.
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
Chat Completion Message Custom Tool Call
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
Chat Completion Message Function Tool Call
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
Chat Completion Message Param
-
class ChatCompletionMessageParam: A class that can be one of several variants.unionDeveloper-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer,
developermessages replace the previoussystemmessages.-
class ChatCompletionDeveloperMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer,
developermessages replace the previoussystemmessages.-
Content contentThe contents of the developer message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; role "developer"constantThe role of the messages author, in this case
developer.DEVELOPER("developer")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionSystemMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer, use
developermessages for this purpose instead.-
Content contentThe contents of the system message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
-
JsonValue; role "system"constantThe role of the messages author, in this case
system.SYSTEM("system")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionUserMessageParam:Messages sent by an end user, containing prompts or additional context information.
-
Content contentThe contents of the user message.
-
String -
List<ChatCompletionContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
class ChatCompletionContentPartInputAudio:Learn about audio inputs.
-
InputAudio inputAudio-
String dataBase64 encoded audio data.
-
Format formatThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
WAV("wav") -
MP3("mp3")
-
-
-
JsonValue; type "input_audio"constantThe type of the content part. Always
input_audio.INPUT_AUDIO("input_audio")
-
-
File-
FileObject file-
Optional<String> fileDataThe base64 encoded file data, used when passing the file to the model as a string.
-
Optional<String> fileIdThe ID of an uploaded file to use as input.
-
Optional<String> filenameThe name of the file, used when passing the file to the model as a string.
-
-
JsonValue; type "file"constantThe type of the content part. Always
file.FILE("file")
-
-
-
-
JsonValue; role "user"constantThe role of the messages author, in this case
user.USER("user")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
class ChatCompletionAssistantMessageParam:Messages sent by the model in response to user messages.
-
JsonValue; role "assistant"constantThe role of the messages author, in this case
assistant.ASSISTANT("assistant")
-
Optional<Audio> audioData about a previous audio response from the model. Learn more.
-
String idUnique identifier for a previous audio response from the model.
-
-
Optional<Content> contentThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
String -
List<ChatCompletionRequestAssistantMessageContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
class ChatCompletionContentPartRefusal:-
String refusalThe refusal message generated by the model.
-
JsonValue; type "refusal"constantThe type of the content part.
REFUSAL("refusal")
-
-
-
-
Optional<FunctionCall> functionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Optional<String> refusalThe refusal message by the assistant.
-
Optional<List<ChatCompletionMessageToolCall>> toolCallsThe tool calls generated by the model, such as function calls.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
-
-
class ChatCompletionToolMessageParam:-
Content contentThe contents of the tool message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
-
-
-
JsonValue; role "tool"constantThe role of the messages author, in this case
tool.TOOL("tool")
-
String toolCallIdTool call that this message is responding to.
-
-
class ChatCompletionFunctionMessageParam:-
Optional<String> contentThe contents of the function message.
-
String nameThe name of the function to call.
-
JsonValue; role "function"constantThe role of the messages author, in this case
function.FUNCTION("function")
-
-
Chat Completion Message Tool Call
-
class ChatCompletionMessageToolCall: A class that can be one of several variants.unionA call to a function tool created by the model.
-
class ChatCompletionMessageFunctionToolCall:A call to a function tool created by the model.
-
String idThe ID of the tool call.
-
Function functionThe function that the model called.
-
String argumentsThe arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.
-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionMessageCustomToolCall:A call to a custom tool created by the model.
-
String idThe ID of the tool call.
-
Custom customThe custom tool that the model called.
-
String inputThe input for the custom tool call generated by the model.
-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantThe type of the tool. Always
custom.CUSTOM("custom")
-
-
Chat Completion Modality
-
enum ChatCompletionModality:-
TEXT("text") -
AUDIO("audio")
-
Chat Completion Named Tool Choice
-
class ChatCompletionNamedToolChoice:Specifies a tool the model should use. Use to force the model to call a specific function.
-
Function function-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantFor function calling, the type is always
function.FUNCTION("function")
-
Chat Completion Named Tool Choice Custom
-
class ChatCompletionNamedToolChoiceCustom:Specifies a tool the model should use. Use to force the model to call a specific custom tool.
-
Custom custom-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantFor custom tool calling, the type is always
custom.CUSTOM("custom")
-
Chat Completion Prediction Content
-
class ChatCompletionPredictionContent:Static predicted output content, such as the content of a text file that is being regenerated.
-
Content contentThe content that should be matched when generating a model response. If generated tokens would match this content, the entire model response can be returned much more quickly.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; type "content"constantThe type of the predicted content you want to provide. This type is currently always
content.CONTENT("content")
-
Chat Completion Role
-
enum ChatCompletionRole:The role of the author of a message
-
DEVELOPER("developer") -
SYSTEM("system") -
USER("user") -
ASSISTANT("assistant") -
TOOL("tool") -
FUNCTION("function")
-
Chat Completion Store Message
-
class ChatCompletionStoreMessage:A chat completion message generated by the model.
-
String idThe identifier of the chat message.
-
Optional<List<ContentPart>> contentPartsIf a content parts array was provided, this is an array of
textandimage_urlparts. Otherwise, null.-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
-
Chat Completion Stream Options
-
class ChatCompletionStreamOptions:Options for streaming response. Only set this when you set
stream: true.-
Optional<Boolean> includeObfuscationWhen true, stream obfuscation will be enabled. Stream obfuscation adds random characters to an
obfuscationfield on streaming delta events to normalize payload sizes as a mitigation to certain side-channel attacks. These obfuscation fields are included by default, but add a small amount of overhead to the data stream. You can setinclude_obfuscationto false to optimize for bandwidth if you trust the network links between your application and the OpenAI API. -
Optional<Boolean> includeUsageIf set, an additional chunk will be streamed before the
data: [DONE]message. Theusagefield on this chunk shows the token usage statistics for the entire request, and thechoicesfield will always be an empty array.All other chunks will also include a
usagefield, but with a null value. NOTE: If the stream is interrupted, you may not receive the final usage chunk which contains the total token usage for the request.
-
Chat Completion System Message Param
-
class ChatCompletionSystemMessageParam:Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer, use
developermessages for this purpose instead.-
Content contentThe contents of the system message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; role "system"constantThe role of the messages author, in this case
system.SYSTEM("system")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Token Logprob
-
class ChatCompletionTokenLogprob:-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely. -
List<TopLogprob> topLogprobsList of the most likely tokens and their log probability, at this token position. The number of entries may be fewer than the requested
top_logprobs.-
String tokenThe token.
-
Optional<List<Long>> bytesA list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be
nullif there is no bytes representation for the token. -
double logprobThe log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value
-9999.0is used to signify that the token is very unlikely.
-
-
Chat Completion Tool
-
class ChatCompletionTool: A class that can be one of several variants.unionA function tool that can be used to generate a response.
-
class ChatCompletionFunctionTool:A function tool that can be used to generate a response.
-
FunctionDefinition function-
String nameThe name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Optional<String> descriptionA description of what the function does, used by the model to choose when and how to call the function.
-
Optional<FunctionParameters> parametersThe parameters the functions accepts, described as a JSON Schema object. See the guide for examples, and the JSON Schema reference for documentation about the format.
Omitting
parametersdefines a function with an empty parameter list. -
Optional<Boolean> strictWhether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the
parametersfield. Only a subset of JSON Schema is supported whenstrictistrue. Learn more about Structured Outputs in the function calling guide.
-
-
JsonValue; type "function"constantThe type of the tool. Currently, only
functionis supported.FUNCTION("function")
-
-
class ChatCompletionCustomTool:A custom tool that processes input using a specified format.
-
Custom customProperties of the custom tool.
-
String nameThe name of the custom tool, used to identify it in tool calls.
-
Optional<String> descriptionOptional description of the custom tool, used to provide more context.
-
Optional<Format> formatThe input format for the custom tool. Default is unconstrained text.
-
JsonValue;-
JsonValue; type "text"constantUnconstrained text format. Always
text.TEXT("text")
-
-
class Grammar:A grammar defined by the user.
-
InnerGrammar grammarYour chosen grammar.
-
String definitionThe grammar definition.
-
Syntax syntaxThe syntax of the grammar definition. One of
larkorregex.-
LARK("lark") -
REGEX("regex")
-
-
-
JsonValue; type "grammar"constantGrammar format. Always
grammar.GRAMMAR("grammar")
-
-
-
-
JsonValue; type "custom"constantThe type of the custom tool. Always
custom.CUSTOM("custom")
-
-
Chat Completion Tool Choice Option
-
class ChatCompletionToolChoiceOption: A class that can be one of several variants.unionControls which (if any) tool is called by the model.
nonemeans the model will not call any tool and instead generates a message.automeans the model can pick between generating a message or calling one or more tools.requiredmeans the model must call one or more tools. Specifying a particular tool via{"type": "function", "function": {"name": "my_function"}}forces the model to call that tool.noneis the default when no tools are present.autois the default if tools are present.-
Auto-
NONE("none") -
AUTO("auto") -
REQUIRED("required")
-
-
class ChatCompletionAllowedToolChoice:Constrains the tools available to the model to a pre-defined set.
-
ChatCompletionAllowedTools allowedToolsConstrains the tools available to the model to a pre-defined set.
-
Mode modeConstrains the tools available to the model to a pre-defined set.
autoallows the model to pick from among the allowed tools and generate a message.requiredrequires the model to call one or more of the allowed tools.-
AUTO("auto") -
REQUIRED("required")
-
-
List<Tool> toolsA list of tool definitions that the model should be allowed to call.
For the Chat Completions API, the list of tool definitions might look like:
[ { "type": "function", "function": { "name": "get_weather" } }, { "type": "function", "function": { "name": "get_time" } } ]
-
-
JsonValue; type "allowed_tools"constantAllowed tool configuration type. Always
allowed_tools.ALLOWED_TOOLS("allowed_tools")
-
-
class ChatCompletionNamedToolChoice:Specifies a tool the model should use. Use to force the model to call a specific function.
-
Function function-
String nameThe name of the function to call.
-
-
JsonValue; type "function"constantFor function calling, the type is always
function.FUNCTION("function")
-
-
class ChatCompletionNamedToolChoiceCustom:Specifies a tool the model should use. Use to force the model to call a specific custom tool.
-
Custom custom-
String nameThe name of the custom tool to call.
-
-
JsonValue; type "custom"constantFor custom tool calling, the type is always
custom.CUSTOM("custom")
-
-
Chat Completion Tool Message Param
-
class ChatCompletionToolMessageParam:-
Content contentThe contents of the tool message.
-
String -
List<ChatCompletionContentPartText>-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
-
JsonValue; role "tool"constantThe role of the messages author, in this case
tool.TOOL("tool")
-
String toolCallIdTool call that this message is responding to.
-
Chat Completion User Message Param
-
class ChatCompletionUserMessageParam:Messages sent by an end user, containing prompts or additional context information.
-
Content contentThe contents of the user message.
-
String -
List<ChatCompletionContentPart>-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
class ChatCompletionContentPartInputAudio:Learn about audio inputs.
-
InputAudio inputAudio-
String dataBase64 encoded audio data.
-
Format formatThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
WAV("wav") -
MP3("mp3")
-
-
-
JsonValue; type "input_audio"constantThe type of the content part. Always
input_audio.INPUT_AUDIO("input_audio")
-
-
File-
FileObject file-
Optional<String> fileDataThe base64 encoded file data, used when passing the file to the model as a string.
-
Optional<String> fileIdThe ID of an uploaded file to use as input.
-
Optional<String> filenameThe name of the file, used when passing the file to the model as a string.
-
-
JsonValue; type "file"constantThe type of the content part. Always
file.FILE("file")
-
-
-
-
JsonValue; role "user"constantThe role of the messages author, in this case
user.USER("user")
-
Optional<String> nameAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Allowed Tools
-
class ChatCompletionAllowedTools:Constrains the tools available to the model to a pre-defined set.
-
Mode modeConstrains the tools available to the model to a pre-defined set.
autoallows the model to pick from among the allowed tools and generate a message.requiredrequires the model to call one or more of the allowed tools.-
AUTO("auto") -
REQUIRED("required")
-
-
List<Tool> toolsA list of tool definitions that the model should be allowed to call.
For the Chat Completions API, the list of tool definitions might look like:
[ { "type": "function", "function": { "name": "get_weather" } }, { "type": "function", "function": { "name": "get_time" } } ]
-
Messages
Get chat messages
MessageListPage chat().completions().messages().list(MessageListParamsparams = MessageListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
get /chat/completions/{completion_id}/messages
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.
Parameters
-
MessageListParams params-
Optional<String> completionId -
Optional<String> afterIdentifier for the last message from the previous pagination request.
-
Optional<Long> limitNumber of messages to retrieve.
-
Optional<Order> orderSort order for messages by timestamp. Use
ascfor ascending order ordescfor descending order. Defaults toasc.-
ASC("asc") -
DESC("desc")
-
-
Returns
-
class ChatCompletionStoreMessage:A chat completion message generated by the model.
-
String idThe identifier of the chat message.
-
Optional<List<ContentPart>> contentPartsIf a content parts array was provided, this is an array of
textandimage_urlparts. Otherwise, null.-
class ChatCompletionContentPartText:Learn about text inputs.
-
String textThe text content.
-
JsonValue; type "text"constantThe type of the content part.
TEXT("text")
-
-
class ChatCompletionContentPartImage:Learn about image inputs.
-
ImageUrl imageUrl-
String urlEither a URL of the image or the base64 encoded image data.
-
Optional<Detail> detailSpecifies the detail level of the image. Learn more in the Vision guide.
-
AUTO("auto") -
LOW("low") -
HIGH("high")
-
-
-
JsonValue; type "image_url"constantThe type of the content part.
IMAGE_URL("image_url")
-
-
-
Example
package com.openai.example;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.messages.MessageListPage;
import com.openai.models.chat.completions.messages.MessageListParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
MessageListPage page = client.chat().completions().messages().list("completion_id");
}
}
Response
{
"data": [
{
"content": "content",
"refusal": "refusal",
"role": "assistant",
"annotations": [
{
"type": "url_citation",
"url_citation": {
"end_index": 0,
"start_index": 0,
"title": "title",
"url": "https://example.com"
}
}
],
"audio": {
"id": "id",
"data": "data",
"expires_at": 0,
"transcript": "transcript"
},
"function_call": {
"arguments": "arguments",
"name": "name"
},
"tool_calls": [
{
"id": "id",
"function": {
"arguments": "arguments",
"name": "name"
},
"type": "function"
}
],
"id": "id",
"content_parts": [
{
"text": "text",
"type": "text"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}