| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160 |
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- from __future__ import annotations
- from typing import Dict, Union, Iterable, Optional
- from typing_extensions import Literal, overload
- import httpx
- from .. import _legacy_response
- from ..types import completion_create_params
- from .._types import Body, Omit, Query, Headers, NotGiven, SequenceNotStr, omit, not_given
- from .._utils import required_args, maybe_transform, async_maybe_transform
- from .._compat import cached_property
- from .._resource import SyncAPIResource, AsyncAPIResource
- from .._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
- from .._streaming import Stream, AsyncStream
- from .._base_client import (
- make_request_options,
- )
- from ..types.completion import Completion
- from ..types.chat.chat_completion_stream_options_param import ChatCompletionStreamOptionsParam
- __all__ = ["Completions", "AsyncCompletions"]
- class Completions(SyncAPIResource):
- @cached_property
- def with_raw_response(self) -> CompletionsWithRawResponse:
- """
- This property can be used as a prefix for any HTTP method call to return
- the raw response object instead of the parsed content.
- For more information, see https://www.github.com/openai/openai-python#accessing-raw-response-data-eg-headers
- """
- return CompletionsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> CompletionsWithStreamingResponse:
- """
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
- For more information, see https://www.github.com/openai/openai-python#with_streaming_response
- """
- return CompletionsWithStreamingResponse(self)
- @overload
- def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream: Optional[Literal[False]] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream: Whether to stream back partial progress. If set, 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).
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @overload
- def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- stream: Literal[True],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Stream[Completion]:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- stream: Whether to stream back partial progress. If set, 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).
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @overload
- def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- stream: bool,
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion | Stream[Completion]:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- stream: Whether to stream back partial progress. If set, 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).
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @required_args(["model", "prompt"], ["model", "prompt", "stream"])
- def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream: Optional[Literal[False]] | Literal[True] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion | Stream[Completion]:
- return self._post(
- "/completions",
- body=maybe_transform(
- {
- "model": model,
- "prompt": prompt,
- "best_of": best_of,
- "echo": echo,
- "frequency_penalty": frequency_penalty,
- "logit_bias": logit_bias,
- "logprobs": logprobs,
- "max_tokens": max_tokens,
- "n": n,
- "presence_penalty": presence_penalty,
- "seed": seed,
- "stop": stop,
- "stream": stream,
- "stream_options": stream_options,
- "suffix": suffix,
- "temperature": temperature,
- "top_p": top_p,
- "user": user,
- },
- completion_create_params.CompletionCreateParamsStreaming
- if stream
- else completion_create_params.CompletionCreateParamsNonStreaming,
- ),
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=Completion,
- stream=stream or False,
- stream_cls=Stream[Completion],
- )
- class AsyncCompletions(AsyncAPIResource):
- @cached_property
- def with_raw_response(self) -> AsyncCompletionsWithRawResponse:
- """
- This property can be used as a prefix for any HTTP method call to return
- the raw response object instead of the parsed content.
- For more information, see https://www.github.com/openai/openai-python#accessing-raw-response-data-eg-headers
- """
- return AsyncCompletionsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> AsyncCompletionsWithStreamingResponse:
- """
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
- For more information, see https://www.github.com/openai/openai-python#with_streaming_response
- """
- return AsyncCompletionsWithStreamingResponse(self)
- @overload
- async def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream: Optional[Literal[False]] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream: Whether to stream back partial progress. If set, 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).
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @overload
- async def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- stream: Literal[True],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> AsyncStream[Completion]:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- stream: Whether to stream back partial progress. If set, 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).
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @overload
- async def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- stream: bool,
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion | AsyncStream[Completion]:
- """
- Creates a completion for the provided prompt and parameters.
- Args:
- model: ID of the model to use. You can use the
- [List models](https://platform.openai.com/docs/api-reference/models/list) API to
- see all of your available models, or see our
- [Model overview](https://platform.openai.com/docs/models) for descriptions of
- them.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of
- strings, array of tokens, or array of token arrays.
- Note that <|endoftext|> is the document separator that the model sees during
- training, so if a prompt is not specified the model will generate as if from the
- beginning of a new document.
- stream: Whether to stream back partial progress. If set, 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).
- best_of: Generates `best_of` completions server-side and returns the "best" (the one with
- the highest log probability per token). Results cannot be streamed.
- When used with `n`, `best_of` controls the number of candidate completions and
- `n` specifies how many to return – `best_of` must be greater than `n`.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- echo: Echo back the prompt in addition to the completion
- frequency_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- logit_bias: Modify the likelihood of specified tokens appearing in the completion.
- Accepts a JSON object that maps tokens (specified by their token ID in the GPT
- tokenizer) to an associated bias value from -100 to 100. You can use this
- [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs.
- 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.
- As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token
- from being generated.
- logprobs: Include the log probabilities on the `logprobs` most likely output tokens, as
- well the chosen tokens. For example, if `logprobs` is 5, the API will return a
- list of the 5 most likely tokens. The API will always return the `logprob` of
- the sampled token, so there may be up to `logprobs+1` elements in the response.
- The maximum value for `logprobs` is 5.
- max_tokens: The maximum number of [tokens](/tokenizer) that can be generated in the
- completion.
- The token count of your prompt plus `max_tokens` cannot exceed the model's
- context length.
- [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken)
- for counting tokens.
- n: How many completions to generate for each prompt.
- **Note:** Because this parameter generates many completions, it can quickly
- consume your token quota. Use carefully and ensure that you have reasonable
- settings for `max_tokens` and `stop`.
- presence_penalty: 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.
- [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation)
- seed: 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.
- stop: Not supported with latest reasoning models `o3` and `o4-mini`.
- Up to 4 sequences where the API will stop generating further tokens. The
- returned text will not contain the stop sequence.
- stream_options: Options for streaming response. Only set this when you set `stream: true`.
- suffix: The suffix that comes after a completion of inserted text.
- This parameter is only supported for `gpt-3.5-turbo-instruct`.
- temperature: 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.
- top_p: 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: 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).
- extra_headers: Send extra headers
- extra_query: Add additional query parameters to the request
- extra_body: Add additional JSON properties to the request
- timeout: Override the client-level default timeout for this request, in seconds
- """
- ...
- @required_args(["model", "prompt"], ["model", "prompt", "stream"])
- async def create(
- self,
- *,
- model: Union[str, Literal["gpt-3.5-turbo-instruct", "davinci-002", "babbage-002"]],
- prompt: Union[str, SequenceNotStr[str], Iterable[int], Iterable[Iterable[int]], None],
- best_of: Optional[int] | Omit = omit,
- echo: Optional[bool] | Omit = omit,
- frequency_penalty: Optional[float] | Omit = omit,
- logit_bias: Optional[Dict[str, int]] | Omit = omit,
- logprobs: Optional[int] | Omit = omit,
- max_tokens: Optional[int] | Omit = omit,
- n: Optional[int] | Omit = omit,
- presence_penalty: Optional[float] | Omit = omit,
- seed: Optional[int] | Omit = omit,
- stop: Union[Optional[str], SequenceNotStr[str], None] | Omit = omit,
- stream: Optional[Literal[False]] | Literal[True] | Omit = omit,
- stream_options: Optional[ChatCompletionStreamOptionsParam] | Omit = omit,
- suffix: Optional[str] | Omit = omit,
- temperature: Optional[float] | Omit = omit,
- top_p: Optional[float] | Omit = omit,
- user: str | Omit = omit,
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
- # The extra values given here take precedence over values defined on the client or passed to this method.
- extra_headers: Headers | None = None,
- extra_query: Query | None = None,
- extra_body: Body | None = None,
- timeout: float | httpx.Timeout | None | NotGiven = not_given,
- ) -> Completion | AsyncStream[Completion]:
- return await self._post(
- "/completions",
- body=await async_maybe_transform(
- {
- "model": model,
- "prompt": prompt,
- "best_of": best_of,
- "echo": echo,
- "frequency_penalty": frequency_penalty,
- "logit_bias": logit_bias,
- "logprobs": logprobs,
- "max_tokens": max_tokens,
- "n": n,
- "presence_penalty": presence_penalty,
- "seed": seed,
- "stop": stop,
- "stream": stream,
- "stream_options": stream_options,
- "suffix": suffix,
- "temperature": temperature,
- "top_p": top_p,
- "user": user,
- },
- completion_create_params.CompletionCreateParamsStreaming
- if stream
- else completion_create_params.CompletionCreateParamsNonStreaming,
- ),
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=Completion,
- stream=stream or False,
- stream_cls=AsyncStream[Completion],
- )
- class CompletionsWithRawResponse:
- def __init__(self, completions: Completions) -> None:
- self._completions = completions
- self.create = _legacy_response.to_raw_response_wrapper(
- completions.create,
- )
- class AsyncCompletionsWithRawResponse:
- def __init__(self, completions: AsyncCompletions) -> None:
- self._completions = completions
- self.create = _legacy_response.async_to_raw_response_wrapper(
- completions.create,
- )
- class CompletionsWithStreamingResponse:
- def __init__(self, completions: Completions) -> None:
- self._completions = completions
- self.create = to_streamed_response_wrapper(
- completions.create,
- )
- class AsyncCompletionsWithStreamingResponse:
- def __init__(self, completions: AsyncCompletions) -> None:
- self._completions = completions
- self.create = async_to_streamed_response_wrapper(
- completions.create,
- )
|