diff --git a/async-openai/src/types/chat.rs b/async-openai/src/types/chat.rs index b60011d0..01799be4 100644 --- a/async-openai/src/types/chat.rs +++ b/async-openai/src/types/chat.rs @@ -1,988 +1,988 @@ -use std::{collections::HashMap, pin::Pin}; - -use derive_builder::Builder; -use futures::Stream; -use serde::{Deserialize, Serialize}; - -use crate::error::OpenAIError; - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum Prompt { - String(String), - StringArray(Vec), - // Minimum value is 0, maximum value is 50256 (inclusive). - IntegerArray(Vec), - ArrayOfIntegerArray(Vec>), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum Stop { - String(String), // nullable: true - StringArray(Vec), // minItems: 1; maxItems: 4 -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct Logprobs { - pub tokens: Vec, - pub token_logprobs: Vec>, // Option is to account for null value in the list - pub top_logprobs: Vec, - pub text_offset: Vec, -} - -#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] -#[serde(rename_all = "snake_case")] -pub enum CompletionFinishReason { - Stop, - Length, - ContentFilter, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct Choice { - pub text: String, - pub index: u32, - pub logprobs: Option, - pub finish_reason: Option, -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -pub enum ChatCompletionFunctionCall { - /// The model does not call a function, and responds to the end-user. - #[serde(rename = "none")] - None, - /// The model can pick between an end-user or calling a function. - #[serde(rename = "auto")] - Auto, - - // In spec this is ChatCompletionFunctionCallOption - // based on feedback from @m1guelpf in https://github.com/64bit/async-openai/pull/118 - // it is diverged from the spec - /// Forces the model to call the specified function. - #[serde(untagged)] - Function { name: String }, -} - -#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum Role { - System, - #[default] - User, - Assistant, - Tool, - Function, -} - -/// The name and arguments of a function that should be called, as generated by the model. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct FunctionCall { - /// The name of the function to call. - pub name: String, - /// The 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. - pub arguments: String, -} - -/// Usage statistics for the completion request. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct CompletionUsage { - /// Number of tokens in the prompt. - pub prompt_tokens: u32, - /// Number of tokens in the generated completion. - pub completion_tokens: u32, - /// Total number of tokens used in the request (prompt + completion). - pub total_tokens: u32, - /// Breakdown of tokens used in the prompt. - pub prompt_tokens_details: Option, - /// Breakdown of tokens used in a completion. - pub completion_tokens_details: Option, -} - -/// Breakdown of tokens used in a completion. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct PromptTokensDetails { - /// Audio input tokens present in the prompt. - pub audio_tokens: Option, - /// Cached tokens present in the prompt. - pub cached_tokens: Option, -} - -/// Breakdown of tokens used in a completion. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct CompletionTokensDetails { - pub accepted_prediction_tokens: Option, - /// Audio input tokens generated by the model. - pub audio_tokens: Option, - /// Tokens generated by the model for reasoning. - pub reasoning_tokens: Option, - /// When 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. - pub rejected_prediction_tokens: Option, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestDeveloperMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestDeveloperMessage { - /// The contents of the developer message. - pub content: ChatCompletionRequestDeveloperMessageContent, - - /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. - #[serde(skip_serializing_if = "Option::is_none")] - pub name: Option, -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum ChatCompletionRequestDeveloperMessageContent { - Text(String), - Array(Vec), -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestSystemMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestSystemMessage { - /// The contents of the system message. - pub content: ChatCompletionRequestSystemMessageContent, - /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. - #[serde(skip_serializing_if = "Option::is_none")] - pub name: Option, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestMessageContentPartTextArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestMessageContentPartText { - pub text: String, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -pub struct ChatCompletionRequestMessageContentPartRefusal { - /// The refusal message generated by the model. - pub refusal: String, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ImageDetail { - #[default] - Auto, - Low, - High, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ImageUrlArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ImageUrl { - /// Either a URL of the image or the base64 encoded image data. - pub url: String, - /// Specifies the detail level of the image. Learn more in the [Vision guide](https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding). - pub detail: Option, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestMessageContentPartImageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestMessageContentPartImage { - pub image_url: ImageUrl, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum InputAudioFormat { - Wav, - #[default] - Mp3, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] -pub struct InputAudio { - /// Base64 encoded audio data. - pub data: String, - /// The format of the encoded audio data. Currently supports "wav" and "mp3". - pub format: InputAudioFormat, -} - -/// Learn about [audio inputs](https://platform.openai.com/docs/guides/audio). -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestMessageContentPartAudioArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestMessageContentPartAudio { - pub input_audio: InputAudio, -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(tag = "type")] -#[serde(rename_all = "snake_case")] -pub enum ChatCompletionRequestUserMessageContentPart { - Text(ChatCompletionRequestMessageContentPartText), - ImageUrl(ChatCompletionRequestMessageContentPartImage), - InputAudio(ChatCompletionRequestMessageContentPartAudio), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(tag = "type")] -#[serde(rename_all = "snake_case")] -pub enum ChatCompletionRequestSystemMessageContentPart { - Text(ChatCompletionRequestMessageContentPartText), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(tag = "type")] -#[serde(rename_all = "snake_case")] -pub enum ChatCompletionRequestAssistantMessageContentPart { - Text(ChatCompletionRequestMessageContentPartText), - Refusal(ChatCompletionRequestMessageContentPartRefusal), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(tag = "type")] -#[serde(rename_all = "snake_case")] -pub enum ChatCompletionRequestToolMessageContentPart { - Text(ChatCompletionRequestMessageContentPartText), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum ChatCompletionRequestSystemMessageContent { - /// The text contents of the system message. - Text(String), - /// An array of content parts with a defined type. For system messages, only type `text` is supported. - Array(Vec), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum ChatCompletionRequestUserMessageContent { - /// The text contents of the message. - Text(String), - /// An array of content parts with a defined type. Supported options differ based on the [model](https://platform.openai.com/docs/models) being used to generate the response. Can contain text, image, or audio inputs. - Array(Vec), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum ChatCompletionRequestAssistantMessageContent { - /// The text contents of the message. - Text(String), - /// An array of content parts with a defined type. Can be one or more of type `text`, or exactly one of type `refusal`. - Array(Vec), -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(untagged)] -pub enum ChatCompletionRequestToolMessageContent { - /// The text contents of the tool message. - Text(String), - /// An array of content parts with a defined type. For tool messages, only type `text` is supported. - Array(Vec), -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestUserMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestUserMessage { - /// The contents of the user message. - pub content: ChatCompletionRequestUserMessageContent, - /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. - #[serde(skip_serializing_if = "Option::is_none")] - pub name: Option, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] -pub struct ChatCompletionRequestAssistantMessageAudio { - /// Unique identifier for a previous audio response from the model. - pub id: String, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestAssistantMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestAssistantMessage { - /// The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified. - #[serde(skip_serializing_if = "Option::is_none")] - pub content: Option, - /// The refusal message by the assistant. - #[serde(skip_serializing_if = "Option::is_none")] - pub refusal: Option, - /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. - #[serde(skip_serializing_if = "Option::is_none")] - pub name: Option, - /// Data about a previous audio response from the model. - /// [Learn more](https://platform.openai.com/docs/guides/audio). - #[serde(skip_serializing_if = "Option::is_none")] - pub audio: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub tool_calls: Option>, - /// Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model. - #[deprecated] - #[serde(skip_serializing_if = "Option::is_none")] - pub function_call: Option, -} - -/// Tool message -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestToolMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestToolMessage { - /// The contents of the tool message. - pub content: ChatCompletionRequestToolMessageContent, - pub tool_call_id: String, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] -#[builder(name = "ChatCompletionRequestFunctionMessageArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionRequestFunctionMessage { - /// The return value from the function call, to return to the model. - pub content: Option, - /// The name of the function to call. - pub name: String, -} - -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] -#[serde(tag = "role")] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionRequestMessage { - Developer(ChatCompletionRequestDeveloperMessage), - System(ChatCompletionRequestSystemMessage), - User(ChatCompletionRequestUserMessage), - Assistant(ChatCompletionRequestAssistantMessage), - Tool(ChatCompletionRequestToolMessage), - Function(ChatCompletionRequestFunctionMessage), -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatCompletionMessageToolCall { - /// The ID of the tool call. - pub id: String, - /// The type of the tool. Currently, only `function` is supported. - pub r#type: ChatCompletionToolType, - /// The function that the model called. - pub function: FunctionCall, -} - -#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] -pub struct ChatCompletionResponseMessageAudio { - /// Unique identifier for this audio response. - pub id: String, - /// The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations. - pub expires_at: u32, - /// Base64 encoded audio bytes generated by the model, in the format specified in the request. - pub data: String, - /// Transcript of the audio generated by the model. - pub transcript: String, -} - -/// A chat completion message generated by the model. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatCompletionResponseMessage { - /// The contents of the message. - pub content: Option, - /// The refusal message generated by the model. - pub refusal: Option, - /// The tool calls generated by the model, such as function calls. - pub tool_calls: Option>, - - /// The role of the author of this message. - pub role: Role, - - /// Deprecated and replaced by `tool_calls`. - /// The name and arguments of a function that should be called, as generated by the model. - #[deprecated] - pub function_call: Option, - - /// If the audio output modality is requested, this object contains data about the audio response from the model. [Learn more](https://platform.openai.com/docs/guides/audio). - pub audio: Option, -} - -#[derive(Clone, Serialize, Default, Debug, Deserialize, Builder, PartialEq)] -#[builder(name = "ChatCompletionFunctionsArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -#[deprecated] -pub struct ChatCompletionFunctions { - /// The 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. - pub name: String, - /// A description of what the function does, used by the model to choose when and how to call the function. - #[serde(skip_serializing_if = "Option::is_none")] - pub description: Option, - /// The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. - /// - /// Omitting `parameters` defines a function with an empty parameter list. - pub parameters: serde_json::Value, -} - -#[derive(Clone, Serialize, Default, Debug, Deserialize, Builder, PartialEq)] -#[builder(name = "FunctionObjectArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct FunctionObject { - /// The 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. - pub name: String, - /// A description of what the function does, used by the model to choose when and how to call the function. - #[serde(skip_serializing_if = "Option::is_none")] - pub description: Option, - /// The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. - /// - /// Omitting `parameters` defines a function with an empty parameter list. - #[serde(skip_serializing_if = "Option::is_none")] - pub parameters: Option, - - /// Whether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the `parameters` field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn more about Structured Outputs in the [function calling guide](https://platform.openai.com/docs/guides/function-calling). - #[serde(skip_serializing_if = "Option::is_none")] - pub strict: Option, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -#[serde(tag = "type", rename_all = "snake_case")] -pub enum ResponseFormat { - /// The type of response format being defined: `text` - Text, - /// The type of response format being defined: `json_object` - JsonObject, - /// The type of response format being defined: `json_schema` - JsonSchema { - json_schema: ResponseFormatJsonSchema, - }, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ResponseFormatJsonSchema { - /// A description of what the response format is for, used by the model to determine how to respond in the format. - #[serde(skip_serializing_if = "Option::is_none")] - pub description: Option, - /// The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. - pub name: String, - /// The schema for the response format, described as a JSON Schema object. - #[serde(skip_serializing_if = "Option::is_none")] - pub schema: Option, - /// Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. To learn more, read the [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). - #[serde(skip_serializing_if = "Option::is_none")] - pub strict: Option, -} - -#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionToolType { - #[default] - Function, -} - -#[derive(Clone, Serialize, Default, Debug, Builder, Deserialize, PartialEq)] -#[builder(name = "ChatCompletionToolArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct ChatCompletionTool { - #[builder(default = "ChatCompletionToolType::Function")] - pub r#type: ChatCompletionToolType, - pub function: FunctionObject, -} - -#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] -pub struct FunctionName { - /// The name of the function to call. - pub name: String, -} - -/// Specifies a tool the model should use. Use to force the model to call a specific function. -#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] -pub struct ChatCompletionNamedToolChoice { - /// The type of the tool. Currently, only `function` is supported. - pub r#type: ChatCompletionToolType, - - pub function: FunctionName, -} - -/// Controls which (if any) tool is called by the model. -/// `none` means the model will not call any tool and instead generates a message. -/// `auto` means the model can pick between generating a message or calling one or more tools. -/// `required` means 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. -/// -/// `none` is the default when no tools are present. `auto` is the default if tools are present.present. -#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionToolChoiceOption { - #[default] - None, - Auto, - Required, - #[serde(untagged)] - Named(ChatCompletionNamedToolChoice), -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ServiceTier { - Auto, - Default, -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ServiceTierResponse { - Scale, - Default, -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ReasoningEffort { - Low, - Medium, - High, -} - -/// Output types that you would like the model to generate for this request. -/// -/// Most models are capable of generating text, which is the default: `["text"]` -/// -/// The `gpt-4o-audio-preview` model can also be used to [generate -/// audio](https://platform.openai.com/docs/guides/audio). To request that this model generate both text and audio responses, you can use: `["text", "audio"]` -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionModalities { - Text, - Audio, -} - -/// The 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. -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(untagged)] -pub enum PredictionContentContent { - /// The content used for a Predicted Output. This is often the text of a file you are regenerating with minor changes. - Text(String), - /// An array of content parts with a defined type. Supported options differ based on the [model](https://platform.openai.com/docs/models) being used to generate the response. Can contain text inputs. - Array(Vec), -} - -/// Static predicted output content, such as the content of a text file that is being regenerated. -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(tag = "type", rename_all = "lowercase", content = "content")] -pub enum PredictionContent { - /// The type of the predicted content you want to provide. This type is - /// currently always `content`. - Content(PredictionContentContent), -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionAudioVoice { - Alloy, - Ash, - Ballad, - Coral, - Echo, - Sage, - Shimmer, - Verse, -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -#[serde(rename_all = "lowercase")] -pub enum ChatCompletionAudioFormat { - Wav, - Mp3, - Flac, - Opus, - Pcm16, -} - -#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] -pub struct ChatCompletionAudio { - /// The voice the model uses to respond. Supported voices are `ash`, `ballad`, `coral`, `sage`, and `verse` (also supported but not recommended are `alloy`, `echo`, and `shimmer`; these voices are less expressive). - pub voice: ChatCompletionAudioVoice, - /// Specifies the output audio format. Must be one of `wav`, `mp3`, `flac`, `opus`, or `pcm16`. - pub format: ChatCompletionAudioFormat, -} - -#[derive(Clone, Serialize, Default, Debug, Builder, Deserialize, PartialEq)] -#[builder(name = "CreateChatCompletionRequestArgs")] -#[builder(pattern = "mutable")] -#[builder(setter(into, strip_option), default)] -#[builder(derive(Debug))] -#[builder(build_fn(error = "OpenAIError"))] -pub struct CreateChatCompletionRequest { - /// A list of messages comprising the conversation so far. Depending on the [model](https://platform.openai.com/docs/models) you use, different message types (modalities) are supported, like [text](https://platform.openai.com/docs/guides/text-generation), [images](https://platform.openai.com/docs/guides/vision), and [audio](https://platform.openai.com/docs/guides/audio). - pub messages: Vec, // min: 1 - - /// ID of the model to use. - /// See the [model endpoint compatibility](https://platform.openai.com/docs/models#model-endpoint-compatibility) table for details on which models work with the Chat API. - pub model: String, - - /// Whether or not to store the output of this chat completion request - /// - /// for use in our [model distillation](https://platform.openai.com/docs/guides/distillation) or [evals](https://platform.openai.com/docs/guides/evals) products. - #[serde(skip_serializing_if = "Option::is_none")] - pub store: Option, // nullable: true, default: false - - /// **o1 models only** - /// - /// Constrains effort on reasoning for - /// [reasoning models](https://platform.openai.com/docs/guides/reasoning). - /// - /// Currently supported values are `low`, `medium`, and `high`. Reducing - /// - /// reasoning effort can result in faster responses and fewer tokens - /// used on reasoning in a response. - #[serde(skip_serializing_if = "Option::is_none")] - pub reasoning_effort: Option, - - /// Developer-defined tags and values used for filtering completions in the [dashboard](https://platform.openai.com/chat-completions). - #[serde(skip_serializing_if = "Option::is_none")] - pub metadata: Option, // nullable: true - - /// 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. - #[serde(skip_serializing_if = "Option::is_none")] - pub frequency_penalty: Option, // min: -2.0, max: 2.0, default: 0 - - /// 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. - #[serde(skip_serializing_if = "Option::is_none")] - pub logit_bias: Option>, // default: null - - /// Whether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the `content` of `message`. - #[serde(skip_serializing_if = "Option::is_none")] - pub logprobs: Option, - - /// An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. `logprobs` must be set to `true` if this parameter is used. - #[serde(skip_serializing_if = "Option::is_none")] - pub top_logprobs: Option, - - /// The maximum number of [tokens](https://platform.openai.com/tokenizer) that can be generated in the chat completion. - /// - /// This value can be used to control [costs](https://openai.com/api/pricing/) for text generated via API. - /// This value is now deprecated in favor of `max_completion_tokens`, and is - /// not compatible with [o1 series models](https://platform.openai.com/docs/guides/reasoning). - #[deprecated] - #[serde(skip_serializing_if = "Option::is_none")] - pub max_tokens: Option, - - /// An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and [reasoning tokens](https://platform.openai.com/docs/guides/reasoning). - #[serde(skip_serializing_if = "Option::is_none")] - pub max_completion_tokens: Option, - - /// 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 `n` as `1` to minimize costs. - #[serde(skip_serializing_if = "Option::is_none")] - pub n: Option, // min:1, max: 128, default: 1 - - #[serde(skip_serializing_if = "Option::is_none")] - pub modalities: Option>, - - /// Configuration for a [Predicted Output](https://platform.openai.com/docs/guides/predicted-outputs),which can greatly improve response times when large parts of the model response are known ahead of time. This is most common when you are regenerating a file with only minor changes to most of the content. - #[serde(skip_serializing_if = "Option::is_none")] - pub prediction: Option, - - /// Parameters for audio output. Required when audio output is requested with `modalities: ["audio"]`. [Learn more](https://platform.openai.com/docs/guides/audio). - #[serde(skip_serializing_if = "Option::is_none")] - pub audio: Option, - - /// 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. - #[serde(skip_serializing_if = "Option::is_none")] - pub presence_penalty: Option, // min: -2.0, max: 2.0, default 0 - - /// An object specifying the format that the model must output. Compatible with [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), [GPT-4o mini](https://platform.openai.com/docs/models/gpt-4o-mini), [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. - /// - /// Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured Outputs which guarantees the model will match your supplied JSON schema. Learn more in the [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). - /// - /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the message the model generates is valid JSON. - /// - /// **Important:** when using JSON mode, you **must** also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if `finish_reason="length"`, which indicates the generation exceeded `max_tokens` or the conversation exceeded the max context length. - #[serde(skip_serializing_if = "Option::is_none")] - pub response_format: Option, - - /// This feature is in Beta. - /// If specified, our system will make a best effort to sample deterministically, such that repeated requests - /// with the same `seed` and parameters should return the same result. - /// Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend. - #[serde(skip_serializing_if = "Option::is_none")] - pub seed: Option, - - /// Specifies the latency tier to use for processing the request. This parameter is relevant for customers subscribed to the scale tier service: - /// - If set to 'auto', the system will utilize scale tier credits until they are exhausted. - /// - If set to 'default', the request will be processed using the default service tier with a lower uptime SLA and no latency guarentee. - /// - When not set, the default behavior is 'auto'. - /// - /// When this parameter is set, the response body will include the `service_tier` utilized. - #[serde(skip_serializing_if = "Option::is_none")] - pub service_tier: Option, - - /// Up to 4 sequences where the API will stop generating further tokens. - #[serde(skip_serializing_if = "Option::is_none")] - pub stop: Option, - - /// If set, partial message deltas will be sent, like in ChatGPT. - /// Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - /// as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). - #[serde(skip_serializing_if = "Option::is_none")] - pub stream: Option, - - #[serde(skip_serializing_if = "Option::is_none")] - pub stream_options: Option, - - /// 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_p` but not both. - #[serde(skip_serializing_if = "Option::is_none")] - pub temperature: Option, // min: 0, max: 2, default: 1, - - /// 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 `temperature` but not both. - #[serde(skip_serializing_if = "Option::is_none")] - pub top_p: Option, // min: 0, max: 1, default: 1 - - /// A list of tools the model may call. Currently, only functions are supported as a tool. - /// Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported. - #[serde(skip_serializing_if = "Option::is_none")] - pub tools: Option>, - - #[serde(skip_serializing_if = "Option::is_none")] - pub tool_choice: Option, - - /// Whether to enable [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) during tool use. - #[serde(skip_serializing_if = "Option::is_none")] - pub parallel_tool_calls: Option, - - /// A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). - #[serde(skip_serializing_if = "Option::is_none")] - pub user: Option, - - /// Deprecated in favor of `tool_choice`. - /// - /// Controls which (if any) function is called by the model. - /// `none` means the model will not call a function and instead generates a message. - /// `auto` means 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. - /// - /// `none` is the default when no functions are present. `auto` is the default if functions are present. - #[deprecated] - #[serde(skip_serializing_if = "Option::is_none")] - pub function_call: Option, - - /// Deprecated in favor of `tools`. - /// - /// A list of functions the model may generate JSON inputs for. - #[deprecated] - #[serde(skip_serializing_if = "Option::is_none")] - pub functions: Option>, -} - -/// Options for streaming response. Only set this when you set `stream: true`. -#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] -pub struct ChatCompletionStreamOptions { - /// If set, an additional chunk will be streamed before the `data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array. All other chunks will also include a `usage` field, but with a null value. - pub include_usage: bool, -} - -#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] -#[serde(rename_all = "snake_case")] -pub enum FinishReason { - Stop, - Length, - ToolCalls, - ContentFilter, - FunctionCall, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct TopLogprobs { - /// The token. - pub token: String, - /// The log probability of this token. - pub logprob: f32, - /// A 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 `null` if there is no bytes representation for the token. - pub bytes: Option>, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatCompletionTokenLogprob { - /// The token. - pub token: String, - /// The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely. - pub logprob: f32, - /// A 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 `null` if there is no bytes representation for the token. - pub bytes: Option>, - /// List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned. - pub top_logprobs: Vec, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatChoiceLogprobs { - /// A list of message content tokens with log probability information. - pub content: Option>, - pub refusal: Option>, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatChoice { - /// The index of the choice in the list of choices. - pub index: u32, - pub message: ChatCompletionResponseMessage, - /// The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, - /// `length` if the maximum number of tokens specified in the request was reached, - /// `content_filter` if content was omitted due to a flag from our content filters, - /// `tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function. - pub finish_reason: Option, - /// Log probability information for the choice. - pub logprobs: Option, -} - -/// Represents a chat completion response returned by model, based on the provided input. -#[derive(Debug, Deserialize, Clone, PartialEq, Serialize)] -pub struct CreateChatCompletionResponse { - /// A unique identifier for the chat completion. - pub id: String, - /// A list of chat completion choices. Can be more than one if `n` is greater than 1. - pub choices: Vec, - /// The Unix timestamp (in seconds) of when the chat completion was created. - pub created: u32, - /// The model used for the chat completion. - pub model: String, - /// The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. - pub service_tier: Option, - /// This fingerprint represents the backend configuration that the model runs with. - /// - /// Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism. - pub system_fingerprint: Option, - - /// The object type, which is always `chat.completion`. - pub object: String, - pub usage: Option, -} - -/// Parsed server side events stream until an \[DONE\] is received from server. -pub type ChatCompletionResponseStream = - Pin> + Send>>; - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct FunctionCallStream { - /// The name of the function to call. - pub name: Option, - /// The 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. - pub arguments: Option, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatCompletionMessageToolCallChunk { - pub index: u32, - /// The ID of the tool call. - pub id: Option, - /// The type of the tool. Currently, only `function` is supported. - pub r#type: Option, - pub function: Option, -} - -/// A chat completion delta generated by streamed model responses. -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatCompletionStreamResponseDelta { - /// The contents of the chunk message. - pub content: Option, - /// Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model. - #[deprecated] - pub function_call: Option, - - pub tool_calls: Option>, - /// The role of the author of this message. - pub role: Option, - /// The refusal message generated by the model. - pub refusal: Option, -} - -#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] -pub struct ChatChoiceStream { - /// The index of the choice in the list of choices. - pub index: u32, - pub delta: ChatCompletionStreamResponseDelta, - /// The reason the model stopped generating tokens. This will be - /// `stop` if the model hit a natural stop point or a provided - /// stop sequence, - /// - /// `length` if the maximum number of tokens specified in the - /// request was reached, - /// `content_filter` if content was omitted due to a flag from our - /// content filters, - /// `tool_calls` if the model called a tool, or `function_call` - /// (deprecated) if the model called a function. - pub finish_reason: Option, - /// Log probability information for the choice. - pub logprobs: Option, -} - -#[derive(Debug, Deserialize, Clone, PartialEq, Serialize)] -/// Represents a streamed chunk of a chat completion response returned by model, based on the provided input. -pub struct CreateChatCompletionStreamResponse { - /// A unique identifier for the chat completion. Each chunk has the same ID. - pub id: String, - /// A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the last chunk if you set `stream_options: {"include_usage": true}`. - pub choices: Vec, - - /// The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp. - pub created: u32, - /// The model to generate the completion. - pub model: String, - /// The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. - pub service_tier: Option, - /// This fingerprint represents the backend configuration that the model runs with. - /// Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism. - pub system_fingerprint: Option, - /// The object type, which is always `chat.completion.chunk`. - pub object: String, - - /// An 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. - pub usage: Option, -} +use std::{collections::HashMap, pin::Pin}; + +use derive_builder::Builder; +use futures::Stream; +use serde::{Deserialize, Serialize}; + +use crate::error::OpenAIError; + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum Prompt { + String(String), + StringArray(Vec), + // Minimum value is 0, maximum value is 50256 (inclusive). + IntegerArray(Vec), + ArrayOfIntegerArray(Vec>), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum Stop { + String(String), // nullable: true + StringArray(Vec), // minItems: 1; maxItems: 4 +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct Logprobs { + pub tokens: Vec, + pub token_logprobs: Vec>, // Option is to account for null value in the list + pub top_logprobs: Vec, + pub text_offset: Vec, +} + +#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] +#[serde(rename_all = "snake_case")] +pub enum CompletionFinishReason { + Stop, + Length, + ContentFilter, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct Choice { + pub text: String, + pub index: u32, + pub logprobs: Option, + pub finish_reason: Option, +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +pub enum ChatCompletionFunctionCall { + /// The model does not call a function, and responds to the end-user. + #[serde(rename = "none")] + None, + /// The model can pick between an end-user or calling a function. + #[serde(rename = "auto")] + Auto, + + // In spec this is ChatCompletionFunctionCallOption + // based on feedback from @m1guelpf in https://github.com/64bit/async-openai/pull/118 + // it is diverged from the spec + /// Forces the model to call the specified function. + #[serde(untagged)] + Function { name: String }, +} + +#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum Role { + System, + #[default] + User, + Assistant, + Tool, + Function, +} + +/// The name and arguments of a function that should be called, as generated by the model. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct FunctionCall { + /// The name of the function to call. + pub name: String, + /// The 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. + pub arguments: String, +} + +/// Usage statistics for the completion request. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct CompletionUsage { + /// Number of tokens in the prompt. + pub prompt_tokens: u32, + /// Number of tokens in the generated completion. + pub completion_tokens: u32, + /// Total number of tokens used in the request (prompt + completion). + pub total_tokens: u32, + /// Breakdown of tokens used in the prompt. + pub prompt_tokens_details: Option, + /// Breakdown of tokens used in a completion. + pub completion_tokens_details: Option, +} + +/// Breakdown of tokens used in a completion. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct PromptTokensDetails { + /// Audio input tokens present in the prompt. + pub audio_tokens: Option, + /// Cached tokens present in the prompt. + pub cached_tokens: Option, +} + +/// Breakdown of tokens used in a completion. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct CompletionTokensDetails { + pub accepted_prediction_tokens: Option, + /// Audio input tokens generated by the model. + pub audio_tokens: Option, + /// Tokens generated by the model for reasoning. + pub reasoning_tokens: Option, + /// When 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. + pub rejected_prediction_tokens: Option, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestDeveloperMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestDeveloperMessage { + /// The contents of the developer message. + pub content: ChatCompletionRequestDeveloperMessageContent, + + /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum ChatCompletionRequestDeveloperMessageContent { + Text(String), + Array(Vec), +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestSystemMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestSystemMessage { + /// The contents of the system message. + pub content: ChatCompletionRequestSystemMessageContent, + /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestMessageContentPartTextArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestMessageContentPartText { + pub text: String, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +pub struct ChatCompletionRequestMessageContentPartRefusal { + /// The refusal message generated by the model. + pub refusal: String, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ImageDetail { + #[default] + Auto, + Low, + High, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ImageUrlArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ImageUrl { + /// Either a URL of the image or the base64 encoded image data. + pub url: String, + /// Specifies the detail level of the image. Learn more in the [Vision guide](https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding). + pub detail: Option, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestMessageContentPartImageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestMessageContentPartImage { + pub image_url: ImageUrl, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum InputAudioFormat { + Wav, + #[default] + Mp3, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] +pub struct InputAudio { + /// Base64 encoded audio data. + pub data: String, + /// The format of the encoded audio data. Currently supports "wav" and "mp3". + pub format: InputAudioFormat, +} + +/// Learn about [audio inputs](https://platform.openai.com/docs/guides/audio). +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestMessageContentPartAudioArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestMessageContentPartAudio { + pub input_audio: InputAudio, +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(tag = "type")] +#[serde(rename_all = "snake_case")] +pub enum ChatCompletionRequestUserMessageContentPart { + Text(ChatCompletionRequestMessageContentPartText), + ImageUrl(ChatCompletionRequestMessageContentPartImage), + InputAudio(ChatCompletionRequestMessageContentPartAudio), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(tag = "type")] +#[serde(rename_all = "snake_case")] +pub enum ChatCompletionRequestSystemMessageContentPart { + Text(ChatCompletionRequestMessageContentPartText), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(tag = "type")] +#[serde(rename_all = "snake_case")] +pub enum ChatCompletionRequestAssistantMessageContentPart { + Text(ChatCompletionRequestMessageContentPartText), + Refusal(ChatCompletionRequestMessageContentPartRefusal), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(tag = "type")] +#[serde(rename_all = "snake_case")] +pub enum ChatCompletionRequestToolMessageContentPart { + Text(ChatCompletionRequestMessageContentPartText), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum ChatCompletionRequestSystemMessageContent { + /// The text contents of the system message. + Text(String), + /// An array of content parts with a defined type. For system messages, only type `text` is supported. + Array(Vec), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum ChatCompletionRequestUserMessageContent { + /// The text contents of the message. + Text(String), + /// An array of content parts with a defined type. Supported options differ based on the [model](https://platform.openai.com/docs/models) being used to generate the response. Can contain text, image, or audio inputs. + Array(Vec), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum ChatCompletionRequestAssistantMessageContent { + /// The text contents of the message. + Text(String), + /// An array of content parts with a defined type. Can be one or more of type `text`, or exactly one of type `refusal`. + Array(Vec), +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(untagged)] +pub enum ChatCompletionRequestToolMessageContent { + /// The text contents of the tool message. + Text(String), + /// An array of content parts with a defined type. For tool messages, only type `text` is supported. + Array(Vec), +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestUserMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestUserMessage { + /// The contents of the user message. + pub content: ChatCompletionRequestUserMessageContent, + /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] +pub struct ChatCompletionRequestAssistantMessageAudio { + /// Unique identifier for a previous audio response from the model. + pub id: String, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestAssistantMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestAssistantMessage { + /// The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified. + #[serde(skip_serializing_if = "Option::is_none")] + pub content: Option, + /// The refusal message by the assistant. + #[serde(skip_serializing_if = "Option::is_none")] + pub refusal: Option, + /// An optional name for the participant. Provides the model information to differentiate between participants of the same role. + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, + /// Data about a previous audio response from the model. + /// [Learn more](https://platform.openai.com/docs/guides/audio). + #[serde(skip_serializing_if = "Option::is_none")] + pub audio: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub tool_calls: Option>, + /// Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model. + #[deprecated] + #[serde(skip_serializing_if = "Option::is_none")] + pub function_call: Option, +} + +/// Tool message +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestToolMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestToolMessage { + /// The contents of the tool message. + pub content: ChatCompletionRequestToolMessageContent, + pub tool_call_id: String, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, Builder, PartialEq)] +#[builder(name = "ChatCompletionRequestFunctionMessageArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionRequestFunctionMessage { + /// The return value from the function call, to return to the model. + pub content: Option, + /// The name of the function to call. + pub name: String, +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[serde(tag = "role")] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionRequestMessage { + Developer(ChatCompletionRequestDeveloperMessage), + System(ChatCompletionRequestSystemMessage), + User(ChatCompletionRequestUserMessage), + Assistant(ChatCompletionRequestAssistantMessage), + Tool(ChatCompletionRequestToolMessage), + Function(ChatCompletionRequestFunctionMessage), +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatCompletionMessageToolCall { + /// The ID of the tool call. + pub id: String, + /// The type of the tool. Currently, only `function` is supported. + pub r#type: Option, + /// The function that the model called. + pub function: FunctionCall, +} + +#[derive(Debug, Serialize, Deserialize, Default, Clone, PartialEq)] +pub struct ChatCompletionResponseMessageAudio { + /// Unique identifier for this audio response. + pub id: String, + /// The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations. + pub expires_at: u32, + /// Base64 encoded audio bytes generated by the model, in the format specified in the request. + pub data: String, + /// Transcript of the audio generated by the model. + pub transcript: String, +} + +/// A chat completion message generated by the model. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatCompletionResponseMessage { + /// The contents of the message. + pub content: Option, + /// The refusal message generated by the model. + pub refusal: Option, + /// The tool calls generated by the model, such as function calls. + pub tool_calls: Option>, + + /// The role of the author of this message. + pub role: Role, + + /// Deprecated and replaced by `tool_calls`. + /// The name and arguments of a function that should be called, as generated by the model. + #[deprecated] + pub function_call: Option, + + /// If the audio output modality is requested, this object contains data about the audio response from the model. [Learn more](https://platform.openai.com/docs/guides/audio). + pub audio: Option, +} + +#[derive(Clone, Serialize, Default, Debug, Deserialize, Builder, PartialEq)] +#[builder(name = "ChatCompletionFunctionsArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +#[deprecated] +pub struct ChatCompletionFunctions { + /// The 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. + pub name: String, + /// A description of what the function does, used by the model to choose when and how to call the function. + #[serde(skip_serializing_if = "Option::is_none")] + pub description: Option, + /// The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. + /// + /// Omitting `parameters` defines a function with an empty parameter list. + pub parameters: serde_json::Value, +} + +#[derive(Clone, Serialize, Default, Debug, Deserialize, Builder, PartialEq)] +#[builder(name = "FunctionObjectArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct FunctionObject { + /// The 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. + pub name: String, + /// A description of what the function does, used by the model to choose when and how to call the function. + #[serde(skip_serializing_if = "Option::is_none")] + pub description: Option, + /// The parameters the functions accepts, described as a JSON Schema object. See the [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. + /// + /// Omitting `parameters` defines a function with an empty parameter list. + #[serde(skip_serializing_if = "Option::is_none")] + pub parameters: Option, + + /// Whether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the `parameters` field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn more about Structured Outputs in the [function calling guide](https://platform.openai.com/docs/guides/function-calling). + #[serde(skip_serializing_if = "Option::is_none")] + pub strict: Option, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +#[serde(tag = "type", rename_all = "snake_case")] +pub enum ResponseFormat { + /// The type of response format being defined: `text` + Text, + /// The type of response format being defined: `json_object` + JsonObject, + /// The type of response format being defined: `json_schema` + JsonSchema { + json_schema: ResponseFormatJsonSchema, + }, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ResponseFormatJsonSchema { + /// A description of what the response format is for, used by the model to determine how to respond in the format. + #[serde(skip_serializing_if = "Option::is_none")] + pub description: Option, + /// The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. + pub name: String, + /// The schema for the response format, described as a JSON Schema object. + #[serde(skip_serializing_if = "Option::is_none")] + pub schema: Option, + /// Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. To learn more, read the [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + #[serde(skip_serializing_if = "Option::is_none")] + pub strict: Option, +} + +#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionToolType { + #[default] + Function, +} + +#[derive(Clone, Serialize, Default, Debug, Builder, Deserialize, PartialEq)] +#[builder(name = "ChatCompletionToolArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct ChatCompletionTool { + #[builder(default = "ChatCompletionToolType::Function")] + pub r#type: ChatCompletionToolType, + pub function: FunctionObject, +} + +#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] +pub struct FunctionName { + /// The name of the function to call. + pub name: String, +} + +/// Specifies a tool the model should use. Use to force the model to call a specific function. +#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] +pub struct ChatCompletionNamedToolChoice { + /// The type of the tool. Currently, only `function` is supported. + pub r#type: ChatCompletionToolType, + + pub function: FunctionName, +} + +/// Controls which (if any) tool is called by the model. +/// `none` means the model will not call any tool and instead generates a message. +/// `auto` means the model can pick between generating a message or calling one or more tools. +/// `required` means 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. +/// +/// `none` is the default when no tools are present. `auto` is the default if tools are present.present. +#[derive(Clone, Serialize, Default, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionToolChoiceOption { + #[default] + None, + Auto, + Required, + #[serde(untagged)] + Named(ChatCompletionNamedToolChoice), +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ServiceTier { + Auto, + Default, +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ServiceTierResponse { + Scale, + Default, +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ReasoningEffort { + Low, + Medium, + High, +} + +/// Output types that you would like the model to generate for this request. +/// +/// Most models are capable of generating text, which is the default: `["text"]` +/// +/// The `gpt-4o-audio-preview` model can also be used to [generate +/// audio](https://platform.openai.com/docs/guides/audio). To request that this model generate both text and audio responses, you can use: `["text", "audio"]` +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionModalities { + Text, + Audio, +} + +/// The 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. +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(untagged)] +pub enum PredictionContentContent { + /// The content used for a Predicted Output. This is often the text of a file you are regenerating with minor changes. + Text(String), + /// An array of content parts with a defined type. Supported options differ based on the [model](https://platform.openai.com/docs/models) being used to generate the response. Can contain text inputs. + Array(Vec), +} + +/// Static predicted output content, such as the content of a text file that is being regenerated. +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(tag = "type", rename_all = "lowercase", content = "content")] +pub enum PredictionContent { + /// The type of the predicted content you want to provide. This type is + /// currently always `content`. + Content(PredictionContentContent), +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionAudioVoice { + Alloy, + Ash, + Ballad, + Coral, + Echo, + Sage, + Shimmer, + Verse, +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +#[serde(rename_all = "lowercase")] +pub enum ChatCompletionAudioFormat { + Wav, + Mp3, + Flac, + Opus, + Pcm16, +} + +#[derive(Clone, Serialize, Debug, Deserialize, PartialEq)] +pub struct ChatCompletionAudio { + /// The voice the model uses to respond. Supported voices are `ash`, `ballad`, `coral`, `sage`, and `verse` (also supported but not recommended are `alloy`, `echo`, and `shimmer`; these voices are less expressive). + pub voice: ChatCompletionAudioVoice, + /// Specifies the output audio format. Must be one of `wav`, `mp3`, `flac`, `opus`, or `pcm16`. + pub format: ChatCompletionAudioFormat, +} + +#[derive(Clone, Serialize, Default, Debug, Builder, Deserialize, PartialEq)] +#[builder(name = "CreateChatCompletionRequestArgs")] +#[builder(pattern = "mutable")] +#[builder(setter(into, strip_option), default)] +#[builder(derive(Debug))] +#[builder(build_fn(error = "OpenAIError"))] +pub struct CreateChatCompletionRequest { + /// A list of messages comprising the conversation so far. Depending on the [model](https://platform.openai.com/docs/models) you use, different message types (modalities) are supported, like [text](https://platform.openai.com/docs/guides/text-generation), [images](https://platform.openai.com/docs/guides/vision), and [audio](https://platform.openai.com/docs/guides/audio). + pub messages: Vec, // min: 1 + + /// ID of the model to use. + /// See the [model endpoint compatibility](https://platform.openai.com/docs/models#model-endpoint-compatibility) table for details on which models work with the Chat API. + pub model: String, + + /// Whether or not to store the output of this chat completion request + /// + /// for use in our [model distillation](https://platform.openai.com/docs/guides/distillation) or [evals](https://platform.openai.com/docs/guides/evals) products. + #[serde(skip_serializing_if = "Option::is_none")] + pub store: Option, // nullable: true, default: false + + /// **o1 models only** + /// + /// Constrains effort on reasoning for + /// [reasoning models](https://platform.openai.com/docs/guides/reasoning). + /// + /// Currently supported values are `low`, `medium`, and `high`. Reducing + /// + /// reasoning effort can result in faster responses and fewer tokens + /// used on reasoning in a response. + #[serde(skip_serializing_if = "Option::is_none")] + pub reasoning_effort: Option, + + /// Developer-defined tags and values used for filtering completions in the [dashboard](https://platform.openai.com/chat-completions). + #[serde(skip_serializing_if = "Option::is_none")] + pub metadata: Option, // nullable: true + + /// 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. + #[serde(skip_serializing_if = "Option::is_none")] + pub frequency_penalty: Option, // min: -2.0, max: 2.0, default: 0 + + /// 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. + #[serde(skip_serializing_if = "Option::is_none")] + pub logit_bias: Option>, // default: null + + /// Whether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the `content` of `message`. + #[serde(skip_serializing_if = "Option::is_none")] + pub logprobs: Option, + + /// An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. `logprobs` must be set to `true` if this parameter is used. + #[serde(skip_serializing_if = "Option::is_none")] + pub top_logprobs: Option, + + /// The maximum number of [tokens](https://platform.openai.com/tokenizer) that can be generated in the chat completion. + /// + /// This value can be used to control [costs](https://openai.com/api/pricing/) for text generated via API. + /// This value is now deprecated in favor of `max_completion_tokens`, and is + /// not compatible with [o1 series models](https://platform.openai.com/docs/guides/reasoning). + #[deprecated] + #[serde(skip_serializing_if = "Option::is_none")] + pub max_tokens: Option, + + /// An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and [reasoning tokens](https://platform.openai.com/docs/guides/reasoning). + #[serde(skip_serializing_if = "Option::is_none")] + pub max_completion_tokens: Option, + + /// 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 `n` as `1` to minimize costs. + #[serde(skip_serializing_if = "Option::is_none")] + pub n: Option, // min:1, max: 128, default: 1 + + #[serde(skip_serializing_if = "Option::is_none")] + pub modalities: Option>, + + /// Configuration for a [Predicted Output](https://platform.openai.com/docs/guides/predicted-outputs),which can greatly improve response times when large parts of the model response are known ahead of time. This is most common when you are regenerating a file with only minor changes to most of the content. + #[serde(skip_serializing_if = "Option::is_none")] + pub prediction: Option, + + /// Parameters for audio output. Required when audio output is requested with `modalities: ["audio"]`. [Learn more](https://platform.openai.com/docs/guides/audio). + #[serde(skip_serializing_if = "Option::is_none")] + pub audio: Option, + + /// 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. + #[serde(skip_serializing_if = "Option::is_none")] + pub presence_penalty: Option, // min: -2.0, max: 2.0, default 0 + + /// An object specifying the format that the model must output. Compatible with [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), [GPT-4o mini](https://platform.openai.com/docs/models/gpt-4o-mini), [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + /// + /// Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured Outputs which guarantees the model will match your supplied JSON schema. Learn more in the [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + /// + /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the message the model generates is valid JSON. + /// + /// **Important:** when using JSON mode, you **must** also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if `finish_reason="length"`, which indicates the generation exceeded `max_tokens` or the conversation exceeded the max context length. + #[serde(skip_serializing_if = "Option::is_none")] + pub response_format: Option, + + /// This feature is in Beta. + /// If specified, our system will make a best effort to sample deterministically, such that repeated requests + /// with the same `seed` and parameters should return the same result. + /// Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend. + #[serde(skip_serializing_if = "Option::is_none")] + pub seed: Option, + + /// Specifies the latency tier to use for processing the request. This parameter is relevant for customers subscribed to the scale tier service: + /// - If set to 'auto', the system will utilize scale tier credits until they are exhausted. + /// - If set to 'default', the request will be processed using the default service tier with a lower uptime SLA and no latency guarentee. + /// - When not set, the default behavior is 'auto'. + /// + /// When this parameter is set, the response body will include the `service_tier` utilized. + #[serde(skip_serializing_if = "Option::is_none")] + pub service_tier: Option, + + /// Up to 4 sequences where the API will stop generating further tokens. + #[serde(skip_serializing_if = "Option::is_none")] + pub stop: Option, + + /// If set, partial message deltas will be sent, like in ChatGPT. + /// Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + /// as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). + #[serde(skip_serializing_if = "Option::is_none")] + pub stream: Option, + + #[serde(skip_serializing_if = "Option::is_none")] + pub stream_options: Option, + + /// 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_p` but not both. + #[serde(skip_serializing_if = "Option::is_none")] + pub temperature: Option, // min: 0, max: 2, default: 1, + + /// 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 `temperature` but not both. + #[serde(skip_serializing_if = "Option::is_none")] + pub top_p: Option, // min: 0, max: 1, default: 1 + + /// A list of tools the model may call. Currently, only functions are supported as a tool. + /// Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported. + #[serde(skip_serializing_if = "Option::is_none")] + pub tools: Option>, + + #[serde(skip_serializing_if = "Option::is_none")] + pub tool_choice: Option, + + /// Whether to enable [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) during tool use. + #[serde(skip_serializing_if = "Option::is_none")] + pub parallel_tool_calls: Option, + + /// A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). + #[serde(skip_serializing_if = "Option::is_none")] + pub user: Option, + + /// Deprecated in favor of `tool_choice`. + /// + /// Controls which (if any) function is called by the model. + /// `none` means the model will not call a function and instead generates a message. + /// `auto` means 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. + /// + /// `none` is the default when no functions are present. `auto` is the default if functions are present. + #[deprecated] + #[serde(skip_serializing_if = "Option::is_none")] + pub function_call: Option, + + /// Deprecated in favor of `tools`. + /// + /// A list of functions the model may generate JSON inputs for. + #[deprecated] + #[serde(skip_serializing_if = "Option::is_none")] + pub functions: Option>, +} + +/// Options for streaming response. Only set this when you set `stream: true`. +#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] +pub struct ChatCompletionStreamOptions { + /// If set, an additional chunk will be streamed before the `data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array. All other chunks will also include a `usage` field, but with a null value. + pub include_usage: bool, +} + +#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] +#[serde(rename_all = "snake_case")] +pub enum FinishReason { + Stop, + Length, + ToolCalls, + ContentFilter, + FunctionCall, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct TopLogprobs { + /// The token. + pub token: String, + /// The log probability of this token. + pub logprob: f32, + /// A 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 `null` if there is no bytes representation for the token. + pub bytes: Option>, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatCompletionTokenLogprob { + /// The token. + pub token: String, + /// The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely. + pub logprob: f32, + /// A 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 `null` if there is no bytes representation for the token. + pub bytes: Option>, + /// List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned. + pub top_logprobs: Vec, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatChoiceLogprobs { + /// A list of message content tokens with log probability information. + pub content: Option>, + pub refusal: Option>, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatChoice { + /// The index of the choice in the list of choices. + pub index: u32, + pub message: ChatCompletionResponseMessage, + /// The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, + /// `length` if the maximum number of tokens specified in the request was reached, + /// `content_filter` if content was omitted due to a flag from our content filters, + /// `tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function. + pub finish_reason: Option, + /// Log probability information for the choice. + pub logprobs: Option, +} + +/// Represents a chat completion response returned by model, based on the provided input. +#[derive(Debug, Deserialize, Clone, PartialEq, Serialize)] +pub struct CreateChatCompletionResponse { + /// A unique identifier for the chat completion. + pub id: String, + /// A list of chat completion choices. Can be more than one if `n` is greater than 1. + pub choices: Vec, + /// The Unix timestamp (in seconds) of when the chat completion was created. + pub created: u32, + /// The model used for the chat completion. + pub model: String, + /// The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. + pub service_tier: Option, + /// This fingerprint represents the backend configuration that the model runs with. + /// + /// Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism. + pub system_fingerprint: Option, + + /// The object type, which is always `chat.completion`. + pub object: String, + pub usage: Option, +} + +/// Parsed server side events stream until an \[DONE\] is received from server. +pub type ChatCompletionResponseStream = + Pin> + Send>>; + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct FunctionCallStream { + /// The name of the function to call. + pub name: Option, + /// The 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. + pub arguments: Option, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatCompletionMessageToolCallChunk { + pub index: u32, + /// The ID of the tool call. + pub id: Option, + /// The type of the tool. Currently, only `function` is supported. + pub r#type: Option, + pub function: Option, +} + +/// A chat completion delta generated by streamed model responses. +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatCompletionStreamResponseDelta { + /// The contents of the chunk message. + pub content: Option, + /// Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model. + #[deprecated] + pub function_call: Option, + + pub tool_calls: Option>, + /// The role of the author of this message. + pub role: Option, + /// The refusal message generated by the model. + pub refusal: Option, +} + +#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] +pub struct ChatChoiceStream { + /// The index of the choice in the list of choices. + pub index: u32, + pub delta: ChatCompletionStreamResponseDelta, + /// The reason the model stopped generating tokens. This will be + /// `stop` if the model hit a natural stop point or a provided + /// stop sequence, + /// + /// `length` if the maximum number of tokens specified in the + /// request was reached, + /// `content_filter` if content was omitted due to a flag from our + /// content filters, + /// `tool_calls` if the model called a tool, or `function_call` + /// (deprecated) if the model called a function. + pub finish_reason: Option, + /// Log probability information for the choice. + pub logprobs: Option, +} + +#[derive(Debug, Deserialize, Clone, PartialEq, Serialize)] +/// Represents a streamed chunk of a chat completion response returned by model, based on the provided input. +pub struct CreateChatCompletionStreamResponse { + /// A unique identifier for the chat completion. Each chunk has the same ID. + pub id: String, + /// A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the last chunk if you set `stream_options: {"include_usage": true}`. + pub choices: Vec, + + /// The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp. + pub created: u32, + /// The model to generate the completion. + pub model: String, + /// The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. + pub service_tier: Option, + /// This fingerprint represents the backend configuration that the model runs with. + /// Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism. + pub system_fingerprint: Option, + /// The object type, which is always `chat.completion.chunk`. + pub object: String, + + /// An 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. + pub usage: Option, +} diff --git a/examples/tool-call-stream/src/main.rs b/examples/tool-call-stream/src/main.rs index 230ee9a3..b80da024 100644 --- a/examples/tool-call-stream/src/main.rs +++ b/examples/tool-call-stream/src/main.rs @@ -72,7 +72,7 @@ async fn main() -> Result<(), Box> { let state = states_lock.entry(key).or_insert_with(|| { ChatCompletionMessageToolCall { id: tool_call_data.id.clone().unwrap_or_default(), - r#type: ChatCompletionToolType::Function, + r#type: Some(ChatCompletionToolType::Function), function: FunctionCall { name: tool_call_data .function