## Create `chat.completions.create(CompletionCreateParams**kwargs) -> CompletionCreateResponse` **post** `/chat/completions` Creates a model response for the given chat conversation. ### Parameters - **messages:** `Iterable[Message]` A list of messages comprising the conversation so far. - `class MessageChatCompletionRequestSystemMessage` System-provided instructions that the model should follow, regardless of messages sent by the user. - **content:** `Union[str, List[str]]` The contents of the system message. - **MessageChatCompletionRequestSystemMessageContentTextContent:** `str` The contents of the system message. - **MessageChatCompletionRequestSystemMessageContentArrayOfContentParts:** `List[str]` An array of content parts with a defined type. For system messages, only type `text` is supported. - **role:** `Literal["system"]` The role of the messages author, in this case `system`. - `"system"` - `class MessageChatCompletionRequestDeveloperMessage` Developer-provided instructions that the model should follow, regardless of messages sent by the user. - **content:** `Union[str, List[str]]` The contents of the developer message. - **MessageChatCompletionRequestDeveloperMessageContentTextContent:** `str` The contents of the developer message. - **MessageChatCompletionRequestDeveloperMessageContentArrayOfContentParts:** `List[str]` An array of content parts with a defined type. For developer messages, only type `text` is supported. - **role:** `Literal["developer"]` The role of the messages author, in this case `developer`. - `"developer"` - `class MessageChatCompletionRequestUserMessage` Messages sent by an end user, containing prompts or additional context information. - **content:** `Union[str, List[str]]` The contents of the user message. - **MessageChatCompletionRequestUserMessageContentTextContent:** `str` The text contents of the message. - **MessageChatCompletionRequestUserMessageContentArrayOfContentParts:** `List[str]` An array of content parts with a defined type. Supported options differ based on the model being used to generate the response. - **role:** `Literal["user"]` The role of the messages author, in this case `user`. - `"user"` - `class MessageChatCompletionRequestAssistantMessage` Messages sent by the model in response to user messages. - **role:** `Literal["assistant"]` The role of the messages author, in this case `assistant`. - `"assistant"` - **content:** `Union[str, List[str], null]` The contents of the assistant message. - **MessageChatCompletionRequestAssistantMessageContentTextContent:** `str` The contents of the assistant message. - **MessageChatCompletionRequestAssistantMessageContentArrayOfContentParts:** `List[str]` An array of content parts with a defined type. Can be one or more of type `text`, or exactly one of type `refusal`. - **tool\_calls:** `Iterable[MessageChatCompletionRequestAssistantMessageToolCall]` The tool calls generated by the model, such as function calls. - **id:** `str` The ID of the tool call. - **function:** `MessageChatCompletionRequestAssistantMessageToolCallFunction` The function that the model called. - **arguments:** `str` 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. - **name:** `str` The name of the function to call. - **type:** `Literal["function"]` The type of the tool. Currently, only `function` is supported. - `"function"` - `class MessageChatCompletionRequestToolMessage` - **content:** `str` The contents of the tool message. - **role:** `Literal["tool"]` The role of the messages author, in this case `tool`. - `"tool"` - **tool\_call\_id:** `str` Tool call that this message is responding to. - **model:** `str` Model ID used to generate the response. - **frequency\_penalty:** `Optional[float]` 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. - **logit\_bias:** `Optional[Dict[str, int]]` 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:** `Optional[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 `content` of `message`. - **max\_completion\_tokens:** `Optional[int]` The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. - **max\_tokens:** `Optional[int]` The maximum number of tokens that can be generated in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model's context length. - **metadata:** `Optional[Dict[str, str]]` 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. - **n:** `Optional[int]` 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. - **presence\_penalty:** `Optional[float]` 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. - **stop:** `Union[Optional[str], List[str], null]` Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - **StopUnionMember0:** `Optional[str]` - **StopUnionMember1:** `List[str]` - **stream:** `Optional[Literal[false]]` If set to true, the model response data will be streamed to the client as it is generated using server-sent events. - `false` - **stream\_options:** `Optional[StreamOptions]` Options for streaming response. Only set this when you set `stream: true`. - **include\_usage:** `bool` 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. **NOTE:** If the stream is interrupted, you may not receive the final usage chunk which contains the total token usage for the request. - **temperature:** `Optional[float]` 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. - **tool\_choice:** `ToolChoice` 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. - **ToolChoiceUnionMember0:** `Literal["none", "auto", "required"]` `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. - `"none"` - `"auto"` - `"required"` - `class ToolChoiceChatCompletionNamedToolChoice` Specifies a tool the model should use. Use to force the model to call a specific function. - **function:** `ToolChoiceChatCompletionNamedToolChoiceFunction` - **name:** `str` The name of the function to call. - **type:** `Literal["function"]` The type of the tool. Currently, only `function` is supported. - `"function"` - **tools:** `Iterable[Tool]` A list of tools the model may call. Currently, only functions are supported as a tool. - **function:** `ToolFunction` - **name:** `str` 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. - **description:** `str` A description of what the function does, used by the model to choose when and how to call the function. - **parameters:** `Dict[str, object]` The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/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. - **type:** `Literal["function"]` The type of the tool. Currently, only `function` is supported. - `"function"` - **top\_logprobs:** `Optional[int]` 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. - **top\_p:** `Optional[float]` 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. - **user:** `str` A unique identifier representing your end-user, which can help DigitalOcean to monitor and detect abuse. ### Returns - `class CompletionCreateResponse` Represents a chat completion response returned by model, based on the provided input. - **id:** `str` A unique identifier for the chat completion. - **choices:** `List[Choice]` A list of chat completion choices. Can be more than one if `n` is greater than 1. - **finish\_reason:** `Literal["stop", "length", "tool_calls"]` The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, or `length` if the maximum number of tokens specified in the request was reached, `tool_calls` if the model called a tool. - `"stop"` - `"length"` - `"tool_calls"` - **index:** `int` The index of the choice in the list of choices. - **logprobs:** `Optional[ChoiceLogprobs]` Log probability information for the choice. - **content:** `Optional[List[ChatCompletionTokenLogprob]]` A list of message content tokens with log probability information. - **token:** `str` The token. - **bytes:** `Optional[List[int]]` 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. - **logprob:** `float` 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. - **top\_logprobs:** `List[TopLogprob]` 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. - **token:** `str` The token. - **bytes:** `Optional[List[int]]` 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. - **logprob:** `float` 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. - **refusal:** `Optional[List[ChatCompletionTokenLogprob]]` A list of message refusal tokens with log probability information. - **token:** `str` The token. - **bytes:** `Optional[List[int]]` 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. - **logprob:** `float` 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. - **top\_logprobs:** `List[TopLogprob]` 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. - **token:** `str` The token. - **bytes:** `Optional[List[int]]` 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. - **logprob:** `float` 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. - **message:** `ChoiceMessage` A chat completion message generated by the model. - **content:** `Optional[str]` The contents of the message. - **refusal:** `Optional[str]` The refusal message generated by the model. - **role:** `Literal["assistant"]` The role of the author of this message. - `"assistant"` - **tool\_calls:** `Optional[List[ChoiceMessageToolCall]]` The tool calls generated by the model, such as function calls. - **id:** `str` The ID of the tool call. - **function:** `ChoiceMessageToolCallFunction` The function that the model called. - **arguments:** `str` 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. - **name:** `str` The name of the function to call. - **type:** `Literal["function"]` The type of the tool. Currently, only `function` is supported. - `"function"` - **created:** `int` The Unix timestamp (in seconds) of when the chat completion was created. - **model:** `str` The model used for the chat completion. - **object:** `Literal["chat.completion"]` The object type, which is always `chat.completion`. - `"chat.completion"` - **usage:** `Optional[CompletionUsage]` Usage statistics for the completion request. ### Example ```python from do_gradientai import GradientAI client = GradientAI( api_key="My API Key", ) completion = client.chat.completions.create( messages=[{ "content": "string", "role": "system", }], model="llama3-8b-instruct", ) print(completion.id) ```