Completions
Create chat completion
client.Chat.Completions.New(ctx, body) (*ChatCompletion, error)
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
-
body ChatCompletionNewParams-
Messages param.Field[[]ChatCompletionMessageParamUnionResp]A 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.
-
type ChatCompletionDeveloperMessageParamResp struct{…}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 ChatCompletionDeveloperMessageParamContentUnionRespThe contents of the developer message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Role DeveloperThe role of the messages author, in this case
developer.const DeveloperDeveloper Developer = "developer"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionSystemMessageParamResp struct{…}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 ChatCompletionSystemMessageParamContentUnionRespThe contents of the system message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
-
Role SystemThe role of the messages author, in this case
system.const SystemSystem System = "system"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionUserMessageParamResp struct{…}Messages sent by an end user, containing prompts or additional context information.
-
Content ChatCompletionUserMessageParamContentUnionRespThe contents of the user message.
-
string -
[]ChatCompletionContentPartUnion-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
type ChatCompletionContentPartInputAudio struct{…}Learn about audio inputs.
-
InputAudio ChatCompletionContentPartInputAudioInputAudio-
Data stringBase64 encoded audio data.
-
Format stringThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
const ChatCompletionContentPartInputAudioInputAudioFormatWAV ChatCompletionContentPartInputAudioInputAudioFormat = "wav" -
const ChatCompletionContentPartInputAudioInputAudioFormatMP3 ChatCompletionContentPartInputAudioInputAudioFormat = "mp3"
-
-
-
Type InputAudioThe type of the content part. Always
input_audio.const InputAudioInputAudio InputAudio = "input_audio"
-
-
ChatCompletionContentPartFile-
File ChatCompletionContentPartFileFile-
FileData stringThe base64 encoded file data, used when passing the file to the model as a string.
-
FileID stringThe ID of an uploaded file to use as input.
-
Filename stringThe name of the file, used when passing the file to the model as a string.
-
-
Type FileThe type of the content part. Always
file.const FileFile File = "file"
-
-
-
-
Role UserThe role of the messages author, in this case
user.const UserUser User = "user"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionAssistantMessageParamResp struct{…}Messages sent by the model in response to user messages.
-
Role AssistantThe role of the messages author, in this case
assistant.const AssistantAssistant Assistant = "assistant"
-
Audio ChatCompletionAssistantMessageParamAudioRespData about a previous audio response from the model. Learn more.
-
ID stringUnique identifier for a previous audio response from the model.
-
-
Content ChatCompletionAssistantMessageParamContentUnionRespThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
string -
[]ChatCompletionAssistantMessageParamContentArrayOfContentPartUnionResp-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
type ChatCompletionContentPartRefusal struct{…}-
Refusal stringThe refusal message generated by the model.
-
Type RefusalThe type of the content part.
const RefusalRefusal Refusal = "refusal"
-
-
-
-
FunctionCall ChatCompletionAssistantMessageParamFunctionCallRespDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Refusal stringThe refusal message by the assistant.
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
type ChatCompletionToolMessageParamResp struct{…}-
Content ChatCompletionToolMessageParamContentUnionRespThe contents of the tool message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
-
Role ToolThe role of the messages author, in this case
tool.const ToolTool Tool = "tool"
-
ToolCallID stringTool call that this message is responding to.
-
-
type ChatCompletionFunctionMessageParamResp struct{…}-
Content stringThe contents of the function message.
-
Name stringThe name of the function to call.
-
Role FunctionThe role of the messages author, in this case
function.const FunctionFunction Function = "function"
-
-
-
Model param.Field[ChatModel]Model 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.-
string -
type ChatModel string-
const ChatModelGPT5_4 ChatModel = "gpt-5.4" -
const ChatModelGPT5_4Mini ChatModel = "gpt-5.4-mini" -
const ChatModelGPT5_4Nano ChatModel = "gpt-5.4-nano" -
const ChatModelGPT5_4Mini2026_03_17 ChatModel = "gpt-5.4-mini-2026-03-17" -
const ChatModelGPT5_4Nano2026_03_17 ChatModel = "gpt-5.4-nano-2026-03-17" -
const ChatModelGPT5_3ChatLatest ChatModel = "gpt-5.3-chat-latest" -
const ChatModelGPT5_2 ChatModel = "gpt-5.2" -
const ChatModelGPT5_2_2025_12_11 ChatModel = "gpt-5.2-2025-12-11" -
const ChatModelGPT5_2ChatLatest ChatModel = "gpt-5.2-chat-latest" -
const ChatModelGPT5_2Pro ChatModel = "gpt-5.2-pro" -
const ChatModelGPT5_2Pro2025_12_11 ChatModel = "gpt-5.2-pro-2025-12-11" -
const ChatModelGPT5_1 ChatModel = "gpt-5.1" -
const ChatModelGPT5_1_2025_11_13 ChatModel = "gpt-5.1-2025-11-13" -
const ChatModelGPT5_1Codex ChatModel = "gpt-5.1-codex" -
const ChatModelGPT5_1Mini ChatModel = "gpt-5.1-mini" -
const ChatModelGPT5_1ChatLatest ChatModel = "gpt-5.1-chat-latest" -
const ChatModelGPT5 ChatModel = "gpt-5" -
const ChatModelGPT5Mini ChatModel = "gpt-5-mini" -
const ChatModelGPT5Nano ChatModel = "gpt-5-nano" -
const ChatModelGPT5_2025_08_07 ChatModel = "gpt-5-2025-08-07" -
const ChatModelGPT5Mini2025_08_07 ChatModel = "gpt-5-mini-2025-08-07" -
const ChatModelGPT5Nano2025_08_07 ChatModel = "gpt-5-nano-2025-08-07" -
const ChatModelGPT5ChatLatest ChatModel = "gpt-5-chat-latest" -
const ChatModelGPT4_1 ChatModel = "gpt-4.1" -
const ChatModelGPT4_1Mini ChatModel = "gpt-4.1-mini" -
const ChatModelGPT4_1Nano ChatModel = "gpt-4.1-nano" -
const ChatModelGPT4_1_2025_04_14 ChatModel = "gpt-4.1-2025-04-14" -
const ChatModelGPT4_1Mini2025_04_14 ChatModel = "gpt-4.1-mini-2025-04-14" -
const ChatModelGPT4_1Nano2025_04_14 ChatModel = "gpt-4.1-nano-2025-04-14" -
const ChatModelO4Mini ChatModel = "o4-mini" -
const ChatModelO4Mini2025_04_16 ChatModel = "o4-mini-2025-04-16" -
const ChatModelO3 ChatModel = "o3" -
const ChatModelO3_2025_04_16 ChatModel = "o3-2025-04-16" -
const ChatModelO3Mini ChatModel = "o3-mini" -
const ChatModelO3Mini2025_01_31 ChatModel = "o3-mini-2025-01-31" -
const ChatModelO1 ChatModel = "o1" -
const ChatModelO1_2024_12_17 ChatModel = "o1-2024-12-17" -
const ChatModelO1Preview ChatModel = "o1-preview" -
const ChatModelO1Preview2024_09_12 ChatModel = "o1-preview-2024-09-12" -
const ChatModelO1Mini ChatModel = "o1-mini" -
const ChatModelO1Mini2024_09_12 ChatModel = "o1-mini-2024-09-12" -
const ChatModelGPT4o ChatModel = "gpt-4o" -
const ChatModelGPT4o2024_11_20 ChatModel = "gpt-4o-2024-11-20" -
const ChatModelGPT4o2024_08_06 ChatModel = "gpt-4o-2024-08-06" -
const ChatModelGPT4o2024_05_13 ChatModel = "gpt-4o-2024-05-13" -
const ChatModelGPT4oAudioPreview ChatModel = "gpt-4o-audio-preview" -
const ChatModelGPT4oAudioPreview2024_10_01 ChatModel = "gpt-4o-audio-preview-2024-10-01" -
const ChatModelGPT4oAudioPreview2024_12_17 ChatModel = "gpt-4o-audio-preview-2024-12-17" -
const ChatModelGPT4oAudioPreview2025_06_03 ChatModel = "gpt-4o-audio-preview-2025-06-03" -
const ChatModelGPT4oMiniAudioPreview ChatModel = "gpt-4o-mini-audio-preview" -
const ChatModelGPT4oMiniAudioPreview2024_12_17 ChatModel = "gpt-4o-mini-audio-preview-2024-12-17" -
const ChatModelGPT4oSearchPreview ChatModel = "gpt-4o-search-preview" -
const ChatModelGPT4oMiniSearchPreview ChatModel = "gpt-4o-mini-search-preview" -
const ChatModelGPT4oSearchPreview2025_03_11 ChatModel = "gpt-4o-search-preview-2025-03-11" -
const ChatModelGPT4oMiniSearchPreview2025_03_11 ChatModel = "gpt-4o-mini-search-preview-2025-03-11" -
const ChatModelChatgpt4oLatest ChatModel = "chatgpt-4o-latest" -
const ChatModelCodexMiniLatest ChatModel = "codex-mini-latest" -
const ChatModelGPT4oMini ChatModel = "gpt-4o-mini" -
const ChatModelGPT4oMini2024_07_18 ChatModel = "gpt-4o-mini-2024-07-18" -
const ChatModelGPT4Turbo ChatModel = "gpt-4-turbo" -
const ChatModelGPT4Turbo2024_04_09 ChatModel = "gpt-4-turbo-2024-04-09" -
const ChatModelGPT4_0125Preview ChatModel = "gpt-4-0125-preview" -
const ChatModelGPT4TurboPreview ChatModel = "gpt-4-turbo-preview" -
const ChatModelGPT4_1106Preview ChatModel = "gpt-4-1106-preview" -
const ChatModelGPT4VisionPreview ChatModel = "gpt-4-vision-preview" -
const ChatModelGPT4 ChatModel = "gpt-4" -
const ChatModelGPT4_0314 ChatModel = "gpt-4-0314" -
const ChatModelGPT4_0613 ChatModel = "gpt-4-0613" -
const ChatModelGPT4_32k ChatModel = "gpt-4-32k" -
const ChatModelGPT4_32k0314 ChatModel = "gpt-4-32k-0314" -
const ChatModelGPT4_32k0613 ChatModel = "gpt-4-32k-0613" -
const ChatModelGPT3_5Turbo ChatModel = "gpt-3.5-turbo" -
const ChatModelGPT3_5Turbo16k ChatModel = "gpt-3.5-turbo-16k" -
const ChatModelGPT3_5Turbo0301 ChatModel = "gpt-3.5-turbo-0301" -
const ChatModelGPT3_5Turbo0613 ChatModel = "gpt-3.5-turbo-0613" -
const ChatModelGPT3_5Turbo1106 ChatModel = "gpt-3.5-turbo-1106" -
const ChatModelGPT3_5Turbo0125 ChatModel = "gpt-3.5-turbo-0125" -
const ChatModelGPT3_5Turbo16k0613 ChatModel = "gpt-3.5-turbo-16k-0613"
-
-
-
Audio param.Field[ChatCompletionAudioParamResp]Parameters for audio output. Required when audio output is requested with
modalities: ["audio"]. Learn more. -
FrequencyPenalty param.Field[float64]Number 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.
-
FunctionCall param.Field[ChatCompletionNewParamsFunctionCallUnion]Deprecated 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.-
string-
const ChatCompletionNewParamsFunctionCallFunctionCallModeNone ChatCompletionNewParamsFunctionCallFunctionCallMode = "none" -
const ChatCompletionNewParamsFunctionCallFunctionCallModeAuto ChatCompletionNewParamsFunctionCallFunctionCallMode = "auto"
-
-
type ChatCompletionFunctionCallOption struct{…}Specifying a particular function via
{"name": "my_function"}forces the model to call that function.-
Name stringThe name of the function to call.
-
-
-
Functions param.Field[[]ChatCompletionNewParamsFunction]Deprecated in favor of
tools.A list of functions the model may generate JSON inputs for.
-
Name stringThe 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.
-
Description stringA description of what the function does, used by the model to choose when and how to call the function.
-
Parameters FunctionParametersThe 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.
-
-
LogitBias param.Field[map[string, int64]]Modify 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.
-
Logprobs param.Field[bool]Whether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the
contentofmessage. -
MaxCompletionTokens param.Field[int64]An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and reasoning tokens.
-
MaxTokens param.Field[int64]The 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. -
Metadata param.Field[Metadata]Set 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.
-
Modalities param.Field[[]string]Output 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"]-
const ChatCompletionNewParamsModalityText ChatCompletionNewParamsModality = "text" -
const ChatCompletionNewParamsModalityAudio ChatCompletionNewParamsModality = "audio"
-
-
Moderation param.Field[ChatCompletionNewParamsModeration]Configuration for running moderation on the request input and generated output.
-
Model stringThe moderation model to use for moderated completions, e.g. 'omni-moderation-latest'.
-
-
N param.Field[int64]How 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. -
ParallelToolCalls param.Field[bool]Whether to enable parallel function calling during tool use.
-
Prediction param.Field[ChatCompletionPredictionContent]Static predicted output content, such as the content of a text file that is being regenerated.
-
PresencePenalty param.Field[float64]Number 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.
-
PromptCacheKey param.Field[string]Used by OpenAI to cache responses for similar requests to optimize your cache hit rates. Replaces the
userfield. Learn more. -
PromptCacheRetention param.Field[ChatCompletionNewParamsPromptCacheRetention]The 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. -
const ChatCompletionNewParamsPromptCacheRetentionInMemory ChatCompletionNewParamsPromptCacheRetention = "in_memory" -
const ChatCompletionNewParamsPromptCacheRetention24h ChatCompletionNewParamsPromptCacheRetention = "24h"
-
-
ReasoningEffort param.Field[ReasoningEffort]Constrains 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.
-
ResponseFormat param.Field[ChatCompletionNewParamsResponseFormatUnion]An 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.-
type ResponseFormatText struct{…}Default response format. Used to generate text responses.
-
Type TextThe type of response format being defined. Always
text.const TextText Text = "text"
-
-
type ResponseFormatJSONSchema struct{…}JSON Schema response format. Used to generate structured JSON responses. Learn more about Structured Outputs.
-
JSONSchema ResponseFormatJSONSchemaJSONSchemaStructured Outputs configuration options, including a JSON Schema.
-
Name stringThe name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
-
Description stringA description of what the response format is for, used by the model to determine how to respond in the format.
-
Schema map[string, any]The schema for the response format, described as a JSON Schema object. Learn how to build JSON schemas here.
-
Strict boolWhether 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.
-
-
Type JSONSchemaThe type of response format being defined. Always
json_schema.const JSONSchemaJSONSchema JSONSchema = "json_schema"
-
-
type ResponseFormatJSONObject struct{…}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.-
Type JSONObjectThe type of response format being defined. Always
json_object.const JSONObjectJSONObject JSONObject = "json_object"
-
-
-
SafetyIdentifier param.Field[string]A 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.
-
Seed param.Field[int64]This 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. -
ServiceTier param.Field[ChatCompletionNewParamsServiceTier]Specifies 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.-
const ChatCompletionNewParamsServiceTierAuto ChatCompletionNewParamsServiceTier = "auto" -
const ChatCompletionNewParamsServiceTierDefault ChatCompletionNewParamsServiceTier = "default" -
const ChatCompletionNewParamsServiceTierFlex ChatCompletionNewParamsServiceTier = "flex" -
const ChatCompletionNewParamsServiceTierScale ChatCompletionNewParamsServiceTier = "scale" -
const ChatCompletionNewParamsServiceTierPriority ChatCompletionNewParamsServiceTier = "priority"
-
Stop param.Field[ChatCompletionNewParamsStopUnion]Not 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 -
[]string
-
-
Store param.Field[bool]Whether 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.
-
``
-
StreamOptions param.Field[ChatCompletionStreamOptions]Options for streaming response. Only set this when you set
stream: true. -
Temperature param.Field[float64]What 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. -
ToolChoice param.Field[ChatCompletionToolChoiceOptionUnion]Controls 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. -
Tools param.Field[[]ChatCompletionToolUnion]A list of tools the model may call. You can provide either custom tools or function tools.
-
type ChatCompletionFunctionTool struct{…}A function tool that can be used to generate a response.
-
Function FunctionDefinition-
Name stringThe 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.
-
Description stringA description of what the function does, used by the model to choose when and how to call the function.
-
Parameters FunctionParametersThe 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. -
Strict boolWhether 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.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionCustomTool struct{…}A custom tool that processes input using a specified format.
-
Custom ChatCompletionCustomToolCustomProperties of the custom tool.
-
Name stringThe name of the custom tool, used to identify it in tool calls.
-
Description stringOptional description of the custom tool, used to provide more context.
-
Format ChatCompletionCustomToolCustomFormatUnionThe input format for the custom tool. Default is unconstrained text.
-
ChatCompletionCustomToolCustomFormatText-
Type TextUnconstrained text format. Always
text.const TextText Text = "text"
-
-
ChatCompletionCustomToolCustomFormatGrammar-
Grammar ChatCompletionCustomToolCustomFormatGrammarGrammarYour chosen grammar.
-
Definition stringThe grammar definition.
-
Syntax stringThe syntax of the grammar definition. One of
larkorregex.-
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxLark ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "lark" -
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxRegex ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "regex"
-
-
-
Type GrammarGrammar format. Always
grammar.const GrammarGrammar Grammar = "grammar"
-
-
-
-
Type CustomThe type of the custom tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
TopLogprobs param.Field[int64]An 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. -
TopP param.Field[float64]An 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. -
User param.Field[string]This 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. -
Verbosity param.Field[ChatCompletionNewParamsVerbosity]Constrains 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.-
const ChatCompletionNewParamsVerbosityLow ChatCompletionNewParamsVerbosity = "low" -
const ChatCompletionNewParamsVerbosityMedium ChatCompletionNewParamsVerbosity = "medium" -
const ChatCompletionNewParamsVerbosityHigh ChatCompletionNewParamsVerbosity = "high"
-
-
WebSearchOptions param.Field[ChatCompletionNewParamsWebSearchOptions]This tool searches the web for relevant results to use in a response. Learn more about the web search tool.
-
SearchContextSize stringHigh level guidance for the amount of context window space to use for the search. One of
low,medium, orhigh.mediumis the default.-
const ChatCompletionNewParamsWebSearchOptionsSearchContextSizeLow ChatCompletionNewParamsWebSearchOptionsSearchContextSize = "low" -
const ChatCompletionNewParamsWebSearchOptionsSearchContextSizeMedium ChatCompletionNewParamsWebSearchOptionsSearchContextSize = "medium" -
const ChatCompletionNewParamsWebSearchOptionsSearchContextSizeHigh ChatCompletionNewParamsWebSearchOptionsSearchContextSize = "high"
-
-
UserLocation ChatCompletionNewParamsWebSearchOptionsUserLocationApproximate location parameters for the search.
-
Approximate ChatCompletionNewParamsWebSearchOptionsUserLocationApproximateApproximate location parameters for the search.
-
City stringFree text input for the city of the user, e.g.
San Francisco. -
Country stringThe two-letter ISO country code of the user, e.g.
US. -
Region stringFree text input for the region of the user, e.g.
California. -
Timezone stringThe IANA timezone of the user, e.g.
America/Los_Angeles.
-
-
Type ApproximateThe type of location approximation. Always
approximate.const ApproximateApproximate Approximate = "approximate"
-
-
-
Returns
-
type ChatCompletion struct{…}Represents a chat completion response returned by model, based on the provided input.
-
ID stringA unique identifier for the chat completion.
-
Choices []ChatCompletionChoiceA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason stringThe 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.-
const ChatCompletionChoiceFinishReasonStop ChatCompletionChoiceFinishReason = "stop" -
const ChatCompletionChoiceFinishReasonLength ChatCompletionChoiceFinishReason = "length" -
const ChatCompletionChoiceFinishReasonToolCalls ChatCompletionChoiceFinishReason = "tool_calls" -
const ChatCompletionChoiceFinishReasonContentFilter ChatCompletionChoiceFinishReason = "content_filter" -
const ChatCompletionChoiceFinishReasonFunctionCall ChatCompletionChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
Message ChatCompletionMessageA chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created.
-
Model stringThe model used for the chat completion.
-
Object ChatCompletionThe object type, which is always
chat.completion.const ChatCompletionChatCompletion ChatCompletion = "chat.completion"
-
Moderation ChatCompletionModerationModeration results for the request input and generated output, if moderated completions were requested.
-
Input ChatCompletionModerationInputUnionModeration for the request input.
-
type ChatCompletionModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionModerationOutputUnionModeration for the generated output.
-
type ChatCompletionModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionServiceTierSpecifies 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.-
const ChatCompletionServiceTierAuto ChatCompletionServiceTier = "auto" -
const ChatCompletionServiceTierDefault ChatCompletionServiceTier = "default" -
const ChatCompletionServiceTierFlex ChatCompletionServiceTier = "flex" -
const ChatCompletionServiceTierScale ChatCompletionServiceTier = "scale" -
const ChatCompletionServiceTierPriority ChatCompletionServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageUsage statistics for the completion request.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
"github.com/openai/openai-go/shared"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
chatCompletion, err := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Messages: []openai.ChatCompletionMessageParamUnion{openai.ChatCompletionMessageParamUnion{
OfDeveloper: &openai.ChatCompletionDeveloperMessageParam{
Content: openai.ChatCompletionDeveloperMessageParamContentUnion{
OfString: openai.String("string"),
},
},
}},
Model: shared.ChatModelGPT5_4,
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", chatCompletion)
}
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
client.Chat.Completions.List(ctx, query) (*CursorPage[ChatCompletion], error)
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
-
query ChatCompletionListParams-
After param.Field[string]Identifier for the last chat completion from the previous pagination request.
-
Limit param.Field[int64]Number of Chat Completions to retrieve.
-
Metadata param.Field[Metadata]A list of metadata keys to filter the Chat Completions by. Example:
metadata[key1]=value1&metadata[key2]=value2 -
Model param.Field[string]The model used to generate the Chat Completions.
-
Order param.Field[ChatCompletionListParamsOrder]Sort order for Chat Completions by timestamp. Use
ascfor ascending order ordescfor descending order. Defaults toasc.-
const ChatCompletionListParamsOrderAsc ChatCompletionListParamsOrder = "asc" -
const ChatCompletionListParamsOrderDesc ChatCompletionListParamsOrder = "desc"
-
-
Returns
-
type ChatCompletion struct{…}Represents a chat completion response returned by model, based on the provided input.
-
ID stringA unique identifier for the chat completion.
-
Choices []ChatCompletionChoiceA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason stringThe 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.-
const ChatCompletionChoiceFinishReasonStop ChatCompletionChoiceFinishReason = "stop" -
const ChatCompletionChoiceFinishReasonLength ChatCompletionChoiceFinishReason = "length" -
const ChatCompletionChoiceFinishReasonToolCalls ChatCompletionChoiceFinishReason = "tool_calls" -
const ChatCompletionChoiceFinishReasonContentFilter ChatCompletionChoiceFinishReason = "content_filter" -
const ChatCompletionChoiceFinishReasonFunctionCall ChatCompletionChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
Message ChatCompletionMessageA chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created.
-
Model stringThe model used for the chat completion.
-
Object ChatCompletionThe object type, which is always
chat.completion.const ChatCompletionChatCompletion ChatCompletion = "chat.completion"
-
Moderation ChatCompletionModerationModeration results for the request input and generated output, if moderated completions were requested.
-
Input ChatCompletionModerationInputUnionModeration for the request input.
-
type ChatCompletionModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionModerationOutputUnionModeration for the generated output.
-
type ChatCompletionModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionServiceTierSpecifies 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.-
const ChatCompletionServiceTierAuto ChatCompletionServiceTier = "auto" -
const ChatCompletionServiceTierDefault ChatCompletionServiceTier = "default" -
const ChatCompletionServiceTierFlex ChatCompletionServiceTier = "flex" -
const ChatCompletionServiceTierScale ChatCompletionServiceTier = "scale" -
const ChatCompletionServiceTierPriority ChatCompletionServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageUsage statistics for the completion request.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.Chat.Completions.List(context.TODO(), openai.ChatCompletionListParams{
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
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
client.Chat.Completions.Get(ctx, completionID) (*ChatCompletion, error)
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
completionID string
Returns
-
type ChatCompletion struct{…}Represents a chat completion response returned by model, based on the provided input.
-
ID stringA unique identifier for the chat completion.
-
Choices []ChatCompletionChoiceA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason stringThe 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.-
const ChatCompletionChoiceFinishReasonStop ChatCompletionChoiceFinishReason = "stop" -
const ChatCompletionChoiceFinishReasonLength ChatCompletionChoiceFinishReason = "length" -
const ChatCompletionChoiceFinishReasonToolCalls ChatCompletionChoiceFinishReason = "tool_calls" -
const ChatCompletionChoiceFinishReasonContentFilter ChatCompletionChoiceFinishReason = "content_filter" -
const ChatCompletionChoiceFinishReasonFunctionCall ChatCompletionChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
Message ChatCompletionMessageA chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created.
-
Model stringThe model used for the chat completion.
-
Object ChatCompletionThe object type, which is always
chat.completion.const ChatCompletionChatCompletion ChatCompletion = "chat.completion"
-
Moderation ChatCompletionModerationModeration results for the request input and generated output, if moderated completions were requested.
-
Input ChatCompletionModerationInputUnionModeration for the request input.
-
type ChatCompletionModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionModerationOutputUnionModeration for the generated output.
-
type ChatCompletionModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionServiceTierSpecifies 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.-
const ChatCompletionServiceTierAuto ChatCompletionServiceTier = "auto" -
const ChatCompletionServiceTierDefault ChatCompletionServiceTier = "default" -
const ChatCompletionServiceTierFlex ChatCompletionServiceTier = "flex" -
const ChatCompletionServiceTierScale ChatCompletionServiceTier = "scale" -
const ChatCompletionServiceTierPriority ChatCompletionServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageUsage statistics for the completion request.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
chatCompletion, err := client.Chat.Completions.Get(context.TODO(), "completion_id")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", chatCompletion.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
client.Chat.Completions.Update(ctx, completionID, body) (*ChatCompletion, error)
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
-
completionID string -
body ChatCompletionUpdateParams-
Metadata param.Field[Metadata]Set 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
-
type ChatCompletion struct{…}Represents a chat completion response returned by model, based on the provided input.
-
ID stringA unique identifier for the chat completion.
-
Choices []ChatCompletionChoiceA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason stringThe 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.-
const ChatCompletionChoiceFinishReasonStop ChatCompletionChoiceFinishReason = "stop" -
const ChatCompletionChoiceFinishReasonLength ChatCompletionChoiceFinishReason = "length" -
const ChatCompletionChoiceFinishReasonToolCalls ChatCompletionChoiceFinishReason = "tool_calls" -
const ChatCompletionChoiceFinishReasonContentFilter ChatCompletionChoiceFinishReason = "content_filter" -
const ChatCompletionChoiceFinishReasonFunctionCall ChatCompletionChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
Message ChatCompletionMessageA chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created.
-
Model stringThe model used for the chat completion.
-
Object ChatCompletionThe object type, which is always
chat.completion.const ChatCompletionChatCompletion ChatCompletion = "chat.completion"
-
Moderation ChatCompletionModerationModeration results for the request input and generated output, if moderated completions were requested.
-
Input ChatCompletionModerationInputUnionModeration for the request input.
-
type ChatCompletionModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionModerationOutputUnionModeration for the generated output.
-
type ChatCompletionModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionServiceTierSpecifies 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.-
const ChatCompletionServiceTierAuto ChatCompletionServiceTier = "auto" -
const ChatCompletionServiceTierDefault ChatCompletionServiceTier = "default" -
const ChatCompletionServiceTierFlex ChatCompletionServiceTier = "flex" -
const ChatCompletionServiceTierScale ChatCompletionServiceTier = "scale" -
const ChatCompletionServiceTierPriority ChatCompletionServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageUsage statistics for the completion request.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
"github.com/openai/openai-go/shared"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
chatCompletion, err := client.Chat.Completions.Update(
context.TODO(),
"completion_id",
openai.ChatCompletionUpdateParams{
Metadata: shared.Metadata{
"foo": "string",
},
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", chatCompletion.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
}
}
}
Delete chat completion
client.Chat.Completions.Delete(ctx, completionID) (*ChatCompletionDeleted, error)
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
completionID string
Returns
-
type ChatCompletionDeleted struct{…}-
ID stringThe ID of the chat completion that was deleted.
-
Deleted boolWhether the chat completion was deleted.
-
Object ChatCompletionDeletedThe type of object being deleted.
const ChatCompletionDeletedChatCompletionDeleted ChatCompletionDeleted = "chat.completion.deleted"
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
chatCompletionDeleted, err := client.Chat.Completions.Delete(context.TODO(), "completion_id")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", chatCompletionDeleted.ID)
}
Response
{
"id": "id",
"deleted": true,
"object": "chat.completion.deleted"
}
Domain Types
Chat Completion
-
type ChatCompletion struct{…}Represents a chat completion response returned by model, based on the provided input.
-
ID stringA unique identifier for the chat completion.
-
Choices []ChatCompletionChoiceA list of chat completion choices. Can be more than one if
nis greater than 1.-
FinishReason stringThe 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.-
const ChatCompletionChoiceFinishReasonStop ChatCompletionChoiceFinishReason = "stop" -
const ChatCompletionChoiceFinishReasonLength ChatCompletionChoiceFinishReason = "length" -
const ChatCompletionChoiceFinishReasonToolCalls ChatCompletionChoiceFinishReason = "tool_calls" -
const ChatCompletionChoiceFinishReasonContentFilter ChatCompletionChoiceFinishReason = "content_filter" -
const ChatCompletionChoiceFinishReasonFunctionCall ChatCompletionChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
Message ChatCompletionMessageA chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created.
-
Model stringThe model used for the chat completion.
-
Object ChatCompletionThe object type, which is always
chat.completion.const ChatCompletionChatCompletion ChatCompletion = "chat.completion"
-
Moderation ChatCompletionModerationModeration results for the request input and generated output, if moderated completions were requested.
-
Input ChatCompletionModerationInputUnionModeration for the request input.
-
type ChatCompletionModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionModerationOutputUnionModeration for the generated output.
-
type ChatCompletionModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionServiceTierSpecifies 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.-
const ChatCompletionServiceTierAuto ChatCompletionServiceTier = "auto" -
const ChatCompletionServiceTierDefault ChatCompletionServiceTier = "default" -
const ChatCompletionServiceTierFlex ChatCompletionServiceTier = "flex" -
const ChatCompletionServiceTierScale ChatCompletionServiceTier = "scale" -
const ChatCompletionServiceTierPriority ChatCompletionServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageUsage statistics for the completion request.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Chat Completion Allowed Tool Choice
-
type ChatCompletionAllowedToolChoice struct{…}Constrains the tools available to the model to a pre-defined set.
-
AllowedTools ChatCompletionAllowedToolsConstrains the tools available to the model to a pre-defined set.
-
Mode ChatCompletionAllowedToolsModeConstrains 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.-
const ChatCompletionAllowedToolsModeAuto ChatCompletionAllowedToolsMode = "auto" -
const ChatCompletionAllowedToolsModeRequired ChatCompletionAllowedToolsMode = "required"
-
-
Tools []map[string, any]A 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" } } ]
-
-
Type AllowedToolsAllowed tool configuration type. Always
allowed_tools.const AllowedToolsAllowedTools AllowedTools = "allowed_tools"
-
Chat Completion Assistant Message Param
-
type ChatCompletionAssistantMessageParamResp struct{…}Messages sent by the model in response to user messages.
-
Role AssistantThe role of the messages author, in this case
assistant.const AssistantAssistant Assistant = "assistant"
-
Audio ChatCompletionAssistantMessageParamAudioRespData about a previous audio response from the model. Learn more.
-
ID stringUnique identifier for a previous audio response from the model.
-
-
Content ChatCompletionAssistantMessageParamContentUnionRespThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
string -
[]ChatCompletionAssistantMessageParamContentArrayOfContentPartUnionResp-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
type ChatCompletionContentPartRefusal struct{…}-
Refusal stringThe refusal message generated by the model.
-
Type RefusalThe type of the content part.
const RefusalRefusal Refusal = "refusal"
-
-
-
-
FunctionCall ChatCompletionAssistantMessageParamFunctionCallRespDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Refusal stringThe refusal message by the assistant.
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
Chat Completion Audio
-
type ChatCompletionAudio struct{…}If the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
Chat Completion Audio Param
-
type ChatCompletionAudioParamResp struct{…}Parameters for audio output. Required when audio output is requested with
modalities: ["audio"]. Learn more.-
Format ChatCompletionAudioParamFormatSpecifies the output audio format. Must be one of
wav,mp3,flac,opus, orpcm16.-
const ChatCompletionAudioParamFormatWAV ChatCompletionAudioParamFormat = "wav" -
const ChatCompletionAudioParamFormatAAC ChatCompletionAudioParamFormat = "aac" -
const ChatCompletionAudioParamFormatMP3 ChatCompletionAudioParamFormat = "mp3" -
const ChatCompletionAudioParamFormatFLAC ChatCompletionAudioParamFormat = "flac" -
const ChatCompletionAudioParamFormatOpus ChatCompletionAudioParamFormat = "opus" -
const ChatCompletionAudioParamFormatPcm16 ChatCompletionAudioParamFormat = "pcm16"
-
-
Voice ChatCompletionAudioParamVoiceUnionRespThe 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 -
string-
const ChatCompletionAudioParamVoiceStringAlloy ChatCompletionAudioParamVoiceString = "alloy" -
const ChatCompletionAudioParamVoiceStringAsh ChatCompletionAudioParamVoiceString = "ash" -
const ChatCompletionAudioParamVoiceStringBallad ChatCompletionAudioParamVoiceString = "ballad" -
const ChatCompletionAudioParamVoiceStringCoral ChatCompletionAudioParamVoiceString = "coral" -
const ChatCompletionAudioParamVoiceStringEcho ChatCompletionAudioParamVoiceString = "echo" -
const ChatCompletionAudioParamVoiceStringSage ChatCompletionAudioParamVoiceString = "sage" -
const ChatCompletionAudioParamVoiceStringShimmer ChatCompletionAudioParamVoiceString = "shimmer" -
const ChatCompletionAudioParamVoiceStringVerse ChatCompletionAudioParamVoiceString = "verse" -
const ChatCompletionAudioParamVoiceStringMarin ChatCompletionAudioParamVoiceString = "marin" -
const ChatCompletionAudioParamVoiceStringCedar ChatCompletionAudioParamVoiceString = "cedar"
-
-
ChatCompletionAudioParamVoiceIDResp-
ID stringThe custom voice ID, e.g.
voice_1234.
-
-
-
Chat Completion Chunk
-
type ChatCompletionChunk struct{…}Represents a streamed chunk of a chat completion response returned by the model, based on the provided input. Learn more.
-
ID stringA unique identifier for the chat completion. Each chunk has the same ID.
-
Choices []ChatCompletionChunkChoiceA 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 ChatCompletionChunkChoiceDeltaA chat completion delta generated by streamed model responses.
-
Content stringThe contents of the chunk message.
-
FunctionCall ChatCompletionChunkChoiceDeltaFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Refusal stringThe refusal message generated by the model.
-
Role stringThe role of the author of this message.
-
const ChatCompletionChunkChoiceDeltaRoleDeveloper ChatCompletionChunkChoiceDeltaRole = "developer" -
const ChatCompletionChunkChoiceDeltaRoleSystem ChatCompletionChunkChoiceDeltaRole = "system" -
const ChatCompletionChunkChoiceDeltaRoleUser ChatCompletionChunkChoiceDeltaRole = "user" -
const ChatCompletionChunkChoiceDeltaRoleAssistant ChatCompletionChunkChoiceDeltaRole = "assistant" -
const ChatCompletionChunkChoiceDeltaRoleTool ChatCompletionChunkChoiceDeltaRole = "tool"
-
-
ToolCalls []ChatCompletionChunkChoiceDeltaToolCall-
Index int64 -
ID stringThe ID of the tool call.
-
Function ChatCompletionChunkChoiceDeltaToolCallFunction-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type stringThe type of the tool. Currently, only
functionis supported.const ChatCompletionChunkChoiceDeltaToolCallTypeFunction ChatCompletionChunkChoiceDeltaToolCallType = "function"
-
-
-
FinishReason stringThe 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.-
const ChatCompletionChunkChoiceFinishReasonStop ChatCompletionChunkChoiceFinishReason = "stop" -
const ChatCompletionChunkChoiceFinishReasonLength ChatCompletionChunkChoiceFinishReason = "length" -
const ChatCompletionChunkChoiceFinishReasonToolCalls ChatCompletionChunkChoiceFinishReason = "tool_calls" -
const ChatCompletionChunkChoiceFinishReasonContentFilter ChatCompletionChunkChoiceFinishReason = "content_filter" -
const ChatCompletionChunkChoiceFinishReasonFunctionCall ChatCompletionChunkChoiceFinishReason = "function_call"
-
-
Index int64The index of the choice in the list of choices.
-
Logprobs ChatCompletionChunkChoiceLogprobsLog probability information for the choice.
-
Content []ChatCompletionTokenLogprobA list of message content tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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.
-
-
-
Refusal []ChatCompletionTokenLogprobA list of message refusal tokens with log probability information.
-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.
-
-
-
-
Created int64The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.
-
Model stringThe model to generate the completion.
-
Object ChatCompletionChunkThe object type, which is always
chat.completion.chunk.const ChatCompletionChunkChatCompletionChunk ChatCompletionChunk = "chat.completion.chunk"
-
Moderation ChatCompletionChunkModerationModeration results for the request input and generated output. Present on the moderation chunk when moderated completions are requested.
-
Input ChatCompletionChunkModerationInputUnionModeration for the request input.
-
type ChatCompletionChunkModerationInputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionChunkModerationInputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionChunkModerationInputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionChunkModerationInputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionChunkModerationInputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionChunkModerationInputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionChunkModerationInputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
Output ChatCompletionChunkModerationOutputUnionModeration for the generated output.
-
type ChatCompletionChunkModerationOutputModerationResults struct{…}Successful moderation results for the request input or generated output.
-
Model stringThe moderation model used to generate the results.
-
Results []ChatCompletionChunkModerationOutputModerationResultsResultA list of moderation results.
-
Categories map[string, bool]A dictionary of moderation categories to booleans, True if the input is flagged under this category.
-
CategoryAppliedInputTypes map[string, []string]Which modalities of input are reflected by the score for each category.
-
const ChatCompletionChunkModerationOutputModerationResultsResultCategoryAppliedInputTypeText ChatCompletionChunkModerationOutputModerationResultsResultCategoryAppliedInputType = "text" -
const ChatCompletionChunkModerationOutputModerationResultsResultCategoryAppliedInputTypeImage ChatCompletionChunkModerationOutputModerationResultsResultCategoryAppliedInputType = "image"
-
-
CategoryScores map[string, float64]A dictionary of moderation categories to scores.
-
Flagged boolA boolean indicating whether the content was flagged by any category.
-
Model stringThe moderation model that produced this result.
-
Type ModerationResultThe object type, which was always
moderation_resultfor successful moderation results.const ModerationResultModerationResult ModerationResult = "moderation_result"
-
-
Type ModerationResultsThe object type, which is always
moderation_results.const ModerationResultsModerationResults ModerationResults = "moderation_results"
-
-
type ChatCompletionChunkModerationOutputError struct{…}An error produced while attempting moderation.
-
Code stringThe error code.
-
Message stringThe error message.
-
Type ErrorThe object type, which is always
error.const ErrorError Error = "error"
-
-
-
-
ServiceTier ChatCompletionChunkServiceTierSpecifies 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.-
const ChatCompletionChunkServiceTierAuto ChatCompletionChunkServiceTier = "auto" -
const ChatCompletionChunkServiceTierDefault ChatCompletionChunkServiceTier = "default" -
const ChatCompletionChunkServiceTierFlex ChatCompletionChunkServiceTier = "flex" -
const ChatCompletionChunkServiceTierScale ChatCompletionChunkServiceTier = "scale" -
const ChatCompletionChunkServiceTierPriority ChatCompletionChunkServiceTier = "priority"
-
SystemFingerprint stringThis 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. -
Usage CompletionUsageAn 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.
-
CompletionTokens int64Number of tokens in the generated completion.
-
PromptTokens int64Number of tokens in the prompt.
-
TotalTokens int64Total number of tokens used in the request (prompt + completion).
-
CompletionTokensDetails CompletionUsageCompletionTokensDetailsBreakdown of tokens used in a completion.
-
AcceptedPredictionTokens int64When using Predicted Outputs, the number of tokens in the prediction that appeared in the completion.
-
AudioTokens int64Audio input tokens generated by the model.
-
ReasoningTokens int64Tokens generated by the model for reasoning.
-
RejectedPredictionTokens int64When 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.
-
-
PromptTokensDetails CompletionUsagePromptTokensDetailsBreakdown of tokens used in the prompt.
-
AudioTokens int64Audio input tokens present in the prompt.
-
CachedTokens int64Cached tokens present in the prompt.
-
-
-
Chat Completion Content Part
-
type ChatCompletionContentPartUnion interface{…}Learn about text inputs.
-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
type ChatCompletionContentPartInputAudio struct{…}Learn about audio inputs.
-
InputAudio ChatCompletionContentPartInputAudioInputAudio-
Data stringBase64 encoded audio data.
-
Format stringThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
const ChatCompletionContentPartInputAudioInputAudioFormatWAV ChatCompletionContentPartInputAudioInputAudioFormat = "wav" -
const ChatCompletionContentPartInputAudioInputAudioFormatMP3 ChatCompletionContentPartInputAudioInputAudioFormat = "mp3"
-
-
-
Type InputAudioThe type of the content part. Always
input_audio.const InputAudioInputAudio InputAudio = "input_audio"
-
-
ChatCompletionContentPartFile-
File ChatCompletionContentPartFileFile-
FileData stringThe base64 encoded file data, used when passing the file to the model as a string.
-
FileID stringThe ID of an uploaded file to use as input.
-
Filename stringThe name of the file, used when passing the file to the model as a string.
-
-
Type FileThe type of the content part. Always
file.const FileFile File = "file"
-
-
Chat Completion Content Part Image
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
Chat Completion Content Part Input Audio
-
type ChatCompletionContentPartInputAudio struct{…}Learn about audio inputs.
-
InputAudio ChatCompletionContentPartInputAudioInputAudio-
Data stringBase64 encoded audio data.
-
Format stringThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
const ChatCompletionContentPartInputAudioInputAudioFormatWAV ChatCompletionContentPartInputAudioInputAudioFormat = "wav" -
const ChatCompletionContentPartInputAudioInputAudioFormatMP3 ChatCompletionContentPartInputAudioInputAudioFormat = "mp3"
-
-
-
Type InputAudioThe type of the content part. Always
input_audio.const InputAudioInputAudio InputAudio = "input_audio"
-
Chat Completion Content Part Refusal
-
type ChatCompletionContentPartRefusal struct{…}-
Refusal stringThe refusal message generated by the model.
-
Type RefusalThe type of the content part.
const RefusalRefusal Refusal = "refusal"
-
Chat Completion Content Part Text
-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
Chat Completion Custom Tool
-
type ChatCompletionCustomTool struct{…}A custom tool that processes input using a specified format.
-
Custom ChatCompletionCustomToolCustomProperties of the custom tool.
-
Name stringThe name of the custom tool, used to identify it in tool calls.
-
Description stringOptional description of the custom tool, used to provide more context.
-
Format ChatCompletionCustomToolCustomFormatUnionThe input format for the custom tool. Default is unconstrained text.
-
ChatCompletionCustomToolCustomFormatText-
Type TextUnconstrained text format. Always
text.const TextText Text = "text"
-
-
ChatCompletionCustomToolCustomFormatGrammar-
Grammar ChatCompletionCustomToolCustomFormatGrammarGrammarYour chosen grammar.
-
Definition stringThe grammar definition.
-
Syntax stringThe syntax of the grammar definition. One of
larkorregex.-
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxLark ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "lark" -
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxRegex ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "regex"
-
-
-
Type GrammarGrammar format. Always
grammar.const GrammarGrammar Grammar = "grammar"
-
-
-
-
Type CustomThe type of the custom tool. Always
custom.const CustomCustom Custom = "custom"
-
Chat Completion Deleted
-
type ChatCompletionDeleted struct{…}-
ID stringThe ID of the chat completion that was deleted.
-
Deleted boolWhether the chat completion was deleted.
-
Object ChatCompletionDeletedThe type of object being deleted.
const ChatCompletionDeletedChatCompletionDeleted ChatCompletionDeleted = "chat.completion.deleted"
-
Chat Completion Developer Message Param
-
type ChatCompletionDeveloperMessageParamResp struct{…}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 ChatCompletionDeveloperMessageParamContentUnionRespThe contents of the developer message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Role DeveloperThe role of the messages author, in this case
developer.const DeveloperDeveloper Developer = "developer"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Function Call Option
-
type ChatCompletionFunctionCallOption struct{…}Specifying a particular function via
{"name": "my_function"}forces the model to call that function.-
Name stringThe name of the function to call.
-
Chat Completion Function Message Param
-
type ChatCompletionFunctionMessageParamResp struct{…}-
Content stringThe contents of the function message.
-
Name stringThe name of the function to call.
-
Role FunctionThe role of the messages author, in this case
function.const FunctionFunction Function = "function"
-
Chat Completion Function Tool
-
type ChatCompletionFunctionTool struct{…}A function tool that can be used to generate a response.
-
Function FunctionDefinition-
Name stringThe 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.
-
Description stringA description of what the function does, used by the model to choose when and how to call the function.
-
Parameters FunctionParametersThe 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. -
Strict boolWhether 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.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
Chat Completion Message
-
type ChatCompletionMessage struct{…}A chat completion message generated by the model.
-
Content stringThe contents of the message.
-
Refusal stringThe refusal message generated by the model.
-
Role AssistantThe role of the author of this message.
const AssistantAssistant Assistant = "assistant"
-
Annotations []ChatCompletionMessageAnnotationAnnotations for the message, when applicable, as when using the web search tool.
-
Type URLCitationThe type of the URL citation. Always
url_citation.const URLCitationURLCitation URLCitation = "url_citation"
-
URLCitation ChatCompletionMessageAnnotationURLCitationA URL citation when using web search.
-
EndIndex int64The index of the last character of the URL citation in the message.
-
StartIndex int64The index of the first character of the URL citation in the message.
-
Title stringThe title of the web resource.
-
URL stringThe URL of the web resource.
-
-
-
Audio ChatCompletionAudioIf the audio output modality is requested, this object contains data about the audio response from the model. Learn more.
-
ID stringUnique identifier for this audio response.
-
Data stringBase64 encoded audio bytes generated by the model, in the format specified in the request.
-
ExpiresAt int64The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
-
Transcript stringTranscript of the audio generated by the model.
-
-
FunctionCall ChatCompletionMessageFunctionCallDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
Chat Completion Message Custom Tool Call
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
Chat Completion Message Function Tool Call
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
Chat Completion Message Param
-
type ChatCompletionMessageParamUnionResp interface{…}Developer-provided instructions that the model should follow, regardless of messages sent by the user. With o1 models and newer,
developermessages replace the previoussystemmessages.-
type ChatCompletionDeveloperMessageParamResp struct{…}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 ChatCompletionDeveloperMessageParamContentUnionRespThe contents of the developer message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Role DeveloperThe role of the messages author, in this case
developer.const DeveloperDeveloper Developer = "developer"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionSystemMessageParamResp struct{…}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 ChatCompletionSystemMessageParamContentUnionRespThe contents of the system message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
-
Role SystemThe role of the messages author, in this case
system.const SystemSystem System = "system"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionUserMessageParamResp struct{…}Messages sent by an end user, containing prompts or additional context information.
-
Content ChatCompletionUserMessageParamContentUnionRespThe contents of the user message.
-
string -
[]ChatCompletionContentPartUnion-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
type ChatCompletionContentPartInputAudio struct{…}Learn about audio inputs.
-
InputAudio ChatCompletionContentPartInputAudioInputAudio-
Data stringBase64 encoded audio data.
-
Format stringThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
const ChatCompletionContentPartInputAudioInputAudioFormatWAV ChatCompletionContentPartInputAudioInputAudioFormat = "wav" -
const ChatCompletionContentPartInputAudioInputAudioFormatMP3 ChatCompletionContentPartInputAudioInputAudioFormat = "mp3"
-
-
-
Type InputAudioThe type of the content part. Always
input_audio.const InputAudioInputAudio InputAudio = "input_audio"
-
-
ChatCompletionContentPartFile-
File ChatCompletionContentPartFileFile-
FileData stringThe base64 encoded file data, used when passing the file to the model as a string.
-
FileID stringThe ID of an uploaded file to use as input.
-
Filename stringThe name of the file, used when passing the file to the model as a string.
-
-
Type FileThe type of the content part. Always
file.const FileFile File = "file"
-
-
-
-
Role UserThe role of the messages author, in this case
user.const UserUser User = "user"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
-
type ChatCompletionAssistantMessageParamResp struct{…}Messages sent by the model in response to user messages.
-
Role AssistantThe role of the messages author, in this case
assistant.const AssistantAssistant Assistant = "assistant"
-
Audio ChatCompletionAssistantMessageParamAudioRespData about a previous audio response from the model. Learn more.
-
ID stringUnique identifier for a previous audio response from the model.
-
-
Content ChatCompletionAssistantMessageParamContentUnionRespThe contents of the assistant message. Required unless
tool_callsorfunction_callis specified.-
string -
[]ChatCompletionAssistantMessageParamContentArrayOfContentPartUnionResp-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
type ChatCompletionContentPartRefusal struct{…}-
Refusal stringThe refusal message generated by the model.
-
Type RefusalThe type of the content part.
const RefusalRefusal Refusal = "refusal"
-
-
-
-
FunctionCall ChatCompletionAssistantMessageParamFunctionCallRespDeprecated and replaced by
tool_calls. The name and arguments of a function that should be called, as generated by the model.-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Refusal stringThe refusal message by the assistant.
-
ToolCalls []ChatCompletionMessageToolCallUnionThe tool calls generated by the model, such as function calls.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
-
-
type ChatCompletionToolMessageParamResp struct{…}-
Content ChatCompletionToolMessageParamContentUnionRespThe contents of the tool message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
-
-
-
Role ToolThe role of the messages author, in this case
tool.const ToolTool Tool = "tool"
-
ToolCallID stringTool call that this message is responding to.
-
-
type ChatCompletionFunctionMessageParamResp struct{…}-
Content stringThe contents of the function message.
-
Name stringThe name of the function to call.
-
Role FunctionThe role of the messages author, in this case
function.const FunctionFunction Function = "function"
-
-
Chat Completion Message Tool Call
-
type ChatCompletionMessageToolCallUnion interface{…}A call to a function tool created by the model.
-
type ChatCompletionMessageFunctionToolCall struct{…}A call to a function tool created by the model.
-
ID stringThe ID of the tool call.
-
Function ChatCompletionMessageFunctionToolCallFunctionThe function that the model called.
-
Arguments stringThe 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.
-
Name stringThe name of the function to call.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionMessageCustomToolCall struct{…}A call to a custom tool created by the model.
-
ID stringThe ID of the tool call.
-
Custom ChatCompletionMessageCustomToolCallCustomThe custom tool that the model called.
-
Input stringThe input for the custom tool call generated by the model.
-
Name stringThe name of the custom tool to call.
-
-
Type CustomThe type of the tool. Always
custom.const CustomCustom Custom = "custom"
-
-
Chat Completion Modality
-
type ChatCompletionModality string-
const ChatCompletionModalityText ChatCompletionModality = "text" -
const ChatCompletionModalityAudio ChatCompletionModality = "audio"
-
Chat Completion Named Tool Choice
-
type ChatCompletionNamedToolChoice struct{…}Specifies a tool the model should use. Use to force the model to call a specific function.
-
Function ChatCompletionNamedToolChoiceFunction-
Name stringThe name of the function to call.
-
-
Type FunctionFor function calling, the type is always
function.const FunctionFunction Function = "function"
-
Chat Completion Named Tool Choice Custom
-
type ChatCompletionNamedToolChoiceCustom struct{…}Specifies a tool the model should use. Use to force the model to call a specific custom tool.
-
Custom ChatCompletionNamedToolChoiceCustomCustom-
Name stringThe name of the custom tool to call.
-
-
Type CustomFor custom tool calling, the type is always
custom.const CustomCustom Custom = "custom"
-
Chat Completion Prediction Content
-
type ChatCompletionPredictionContent struct{…}Static predicted output content, such as the content of a text file that is being regenerated.
-
Content ChatCompletionPredictionContentContentUnionThe 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 -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Type ContentThe type of the predicted content you want to provide. This type is currently always
content.const ContentContent Content = "content"
-
Chat Completion Role
-
type ChatCompletionRole stringThe role of the author of a message
-
const ChatCompletionRoleDeveloper ChatCompletionRole = "developer" -
const ChatCompletionRoleSystem ChatCompletionRole = "system" -
const ChatCompletionRoleUser ChatCompletionRole = "user" -
const ChatCompletionRoleAssistant ChatCompletionRole = "assistant" -
const ChatCompletionRoleTool ChatCompletionRole = "tool" -
const ChatCompletionRoleFunction ChatCompletionRole = "function"
-
Chat Completion Store Message
-
type ChatCompletionStoreMessage struct{…}A chat completion message generated by the model.
-
ID stringThe identifier of the chat message.
-
ContentParts []ChatCompletionStoreMessageContentPartUnionIf a content parts array was provided, this is an array of
textandimage_urlparts. Otherwise, null.-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
-
Chat Completion Stream Options
-
type ChatCompletionStreamOptions struct{…}Options for streaming response. Only set this when you set
stream: true.-
IncludeObfuscation boolWhen 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. -
IncludeUsage boolIf 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
-
type ChatCompletionSystemMessageParamResp struct{…}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 ChatCompletionSystemMessageParamContentUnionRespThe contents of the system message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Role SystemThe role of the messages author, in this case
system.const SystemSystem System = "system"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Token Logprob
-
type ChatCompletionTokenLogprob struct{…}-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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. -
TopLogprobs []ChatCompletionTokenLogprobTopLogprobList 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.-
Token stringThe token.
-
Bytes []int64A 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. -
Logprob float64The 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
-
type ChatCompletionToolUnion interface{…}A function tool that can be used to generate a response.
-
type ChatCompletionFunctionTool struct{…}A function tool that can be used to generate a response.
-
Function FunctionDefinition-
Name stringThe 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.
-
Description stringA description of what the function does, used by the model to choose when and how to call the function.
-
Parameters FunctionParametersThe 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. -
Strict boolWhether 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.
-
-
Type FunctionThe type of the tool. Currently, only
functionis supported.const FunctionFunction Function = "function"
-
-
type ChatCompletionCustomTool struct{…}A custom tool that processes input using a specified format.
-
Custom ChatCompletionCustomToolCustomProperties of the custom tool.
-
Name stringThe name of the custom tool, used to identify it in tool calls.
-
Description stringOptional description of the custom tool, used to provide more context.
-
Format ChatCompletionCustomToolCustomFormatUnionThe input format for the custom tool. Default is unconstrained text.
-
ChatCompletionCustomToolCustomFormatText-
Type TextUnconstrained text format. Always
text.const TextText Text = "text"
-
-
ChatCompletionCustomToolCustomFormatGrammar-
Grammar ChatCompletionCustomToolCustomFormatGrammarGrammarYour chosen grammar.
-
Definition stringThe grammar definition.
-
Syntax stringThe syntax of the grammar definition. One of
larkorregex.-
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxLark ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "lark" -
const ChatCompletionCustomToolCustomFormatGrammarGrammarSyntaxRegex ChatCompletionCustomToolCustomFormatGrammarGrammarSyntax = "regex"
-
-
-
Type GrammarGrammar format. Always
grammar.const GrammarGrammar Grammar = "grammar"
-
-
-
-
Type CustomThe type of the custom tool. Always
custom.const CustomCustom Custom = "custom"
-
-
Chat Completion Tool Choice Option
-
type ChatCompletionToolChoiceOptionUnion interface{…}Controls 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.-
string-
const ChatCompletionToolChoiceOptionAutoNone ChatCompletionToolChoiceOptionAuto = "none" -
const ChatCompletionToolChoiceOptionAutoAuto ChatCompletionToolChoiceOptionAuto = "auto" -
const ChatCompletionToolChoiceOptionAutoRequired ChatCompletionToolChoiceOptionAuto = "required"
-
-
type ChatCompletionAllowedToolChoice struct{…}Constrains the tools available to the model to a pre-defined set.
-
AllowedTools ChatCompletionAllowedToolsConstrains the tools available to the model to a pre-defined set.
-
Mode ChatCompletionAllowedToolsModeConstrains 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.-
const ChatCompletionAllowedToolsModeAuto ChatCompletionAllowedToolsMode = "auto" -
const ChatCompletionAllowedToolsModeRequired ChatCompletionAllowedToolsMode = "required"
-
-
Tools []map[string, any]A 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" } } ]
-
-
Type AllowedToolsAllowed tool configuration type. Always
allowed_tools.const AllowedToolsAllowedTools AllowedTools = "allowed_tools"
-
-
type ChatCompletionNamedToolChoice struct{…}Specifies a tool the model should use. Use to force the model to call a specific function.
-
Function ChatCompletionNamedToolChoiceFunction-
Name stringThe name of the function to call.
-
-
Type FunctionFor function calling, the type is always
function.const FunctionFunction Function = "function"
-
-
type ChatCompletionNamedToolChoiceCustom struct{…}Specifies a tool the model should use. Use to force the model to call a specific custom tool.
-
Custom ChatCompletionNamedToolChoiceCustomCustom-
Name stringThe name of the custom tool to call.
-
-
Type CustomFor custom tool calling, the type is always
custom.const CustomCustom Custom = "custom"
-
-
Chat Completion Tool Message Param
-
type ChatCompletionToolMessageParamResp struct{…}-
Content ChatCompletionToolMessageParamContentUnionRespThe contents of the tool message.
-
string -
[]ChatCompletionContentPartText-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
-
Role ToolThe role of the messages author, in this case
tool.const ToolTool Tool = "tool"
-
ToolCallID stringTool call that this message is responding to.
-
Chat Completion User Message Param
-
type ChatCompletionUserMessageParamResp struct{…}Messages sent by an end user, containing prompts or additional context information.
-
Content ChatCompletionUserMessageParamContentUnionRespThe contents of the user message.
-
string -
[]ChatCompletionContentPartUnion-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
type ChatCompletionContentPartInputAudio struct{…}Learn about audio inputs.
-
InputAudio ChatCompletionContentPartInputAudioInputAudio-
Data stringBase64 encoded audio data.
-
Format stringThe format of the encoded audio data. Currently supports "wav" and "mp3".
-
const ChatCompletionContentPartInputAudioInputAudioFormatWAV ChatCompletionContentPartInputAudioInputAudioFormat = "wav" -
const ChatCompletionContentPartInputAudioInputAudioFormatMP3 ChatCompletionContentPartInputAudioInputAudioFormat = "mp3"
-
-
-
Type InputAudioThe type of the content part. Always
input_audio.const InputAudioInputAudio InputAudio = "input_audio"
-
-
ChatCompletionContentPartFile-
File ChatCompletionContentPartFileFile-
FileData stringThe base64 encoded file data, used when passing the file to the model as a string.
-
FileID stringThe ID of an uploaded file to use as input.
-
Filename stringThe name of the file, used when passing the file to the model as a string.
-
-
Type FileThe type of the content part. Always
file.const FileFile File = "file"
-
-
-
-
Role UserThe role of the messages author, in this case
user.const UserUser User = "user"
-
Name stringAn optional name for the participant. Provides the model information to differentiate between participants of the same role.
-
Chat Completion Allowed Tools
-
type ChatCompletionAllowedTools struct{…}Constrains the tools available to the model to a pre-defined set.
-
Mode ChatCompletionAllowedToolsModeConstrains 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.-
const ChatCompletionAllowedToolsModeAuto ChatCompletionAllowedToolsMode = "auto" -
const ChatCompletionAllowedToolsModeRequired ChatCompletionAllowedToolsMode = "required"
-
-
Tools []map[string, any]A 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
client.Chat.Completions.Messages.List(ctx, completionID, query) (*CursorPage[ChatCompletionStoreMessage], error)
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
-
completionID string -
query ChatCompletionMessageListParams-
After param.Field[string]Identifier for the last message from the previous pagination request.
-
Limit param.Field[int64]Number of messages to retrieve.
-
Order param.Field[ChatCompletionMessageListParamsOrder]Sort order for messages by timestamp. Use
ascfor ascending order ordescfor descending order. Defaults toasc.-
const ChatCompletionMessageListParamsOrderAsc ChatCompletionMessageListParamsOrder = "asc" -
const ChatCompletionMessageListParamsOrderDesc ChatCompletionMessageListParamsOrder = "desc"
-
-
Returns
-
type ChatCompletionStoreMessage struct{…}A chat completion message generated by the model.
-
ID stringThe identifier of the chat message.
-
ContentParts []ChatCompletionStoreMessageContentPartUnionIf a content parts array was provided, this is an array of
textandimage_urlparts. Otherwise, null.-
type ChatCompletionContentPartText struct{…}Learn about text inputs.
-
Text stringThe text content.
-
Type TextThe type of the content part.
const TextText Text = "text"
-
-
type ChatCompletionContentPartImage struct{…}Learn about image inputs.
-
ImageURL ChatCompletionContentPartImageImageURL-
URL stringEither a URL of the image or the base64 encoded image data.
-
Detail stringSpecifies the detail level of the image. Learn more in the Vision guide.
-
const ChatCompletionContentPartImageImageURLDetailAuto ChatCompletionContentPartImageImageURLDetail = "auto" -
const ChatCompletionContentPartImageImageURLDetailLow ChatCompletionContentPartImageImageURLDetail = "low" -
const ChatCompletionContentPartImageImageURLDetailHigh ChatCompletionContentPartImageImageURLDetail = "high"
-
-
-
Type ImageURLThe type of the content part.
const ImageURLImageURL ImageURL = "image_url"
-
-
-
Example
package main
import (
"context"
"fmt"
"github.com/openai/openai-go"
"github.com/openai/openai-go/option"
)
func main() {
client := openai.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.Chat.Completions.Messages.List(
context.TODO(),
"completion_id",
openai.ChatCompletionMessageListParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
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"
}