| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- from __future__ import annotations
- import logging
- from typing import TYPE_CHECKING, Union, Mapping, cast
- from typing_extensions import Literal, overload, assert_never
- import httpx
- from ... import _legacy_response
- from ..._types import Body, Omit, Query, Headers, NotGiven, FileTypes, omit, not_given
- from ..._utils import extract_files, maybe_transform, deepcopy_minimal, 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 ...types.audio import translation_create_params
- from ..._base_client import make_request_options
- from ...types.audio_model import AudioModel
- from ...types.audio.translation import Translation
- from ...types.audio_response_format import AudioResponseFormat
- from ...types.audio.translation_verbose import TranslationVerbose
- __all__ = ["Translations", "AsyncTranslations"]
- log: logging.Logger = logging.getLogger("openai.audio.transcriptions")
- class Translations(SyncAPIResource):
- @cached_property
- def with_raw_response(self) -> TranslationsWithRawResponse:
- """
- 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 TranslationsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> TranslationsWithStreamingResponse:
- """
- 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 TranslationsWithStreamingResponse(self)
- @overload
- def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Union[Literal["json"], Omit] = omit,
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> Translation: ...
- @overload
- def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Literal["verbose_json"],
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> TranslationVerbose: ...
- @overload
- def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Literal["text", "srt", "vtt"],
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> str: ...
- def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- prompt: str | Omit = omit,
- response_format: Union[Literal["json", "text", "srt", "verbose_json", "vtt"], Omit] = omit,
- temperature: float | 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,
- ) -> Translation | TranslationVerbose | str:
- """
- Translates audio into English.
- Args:
- file: The audio file object (not file name) translate, in one of these formats: flac,
- mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.
- model: ID of the model to use. Only `whisper-1` (which is powered by our open source
- Whisper V2 model) is currently available.
- prompt: An optional text to guide the model's style or continue a previous audio
- segment. The
- [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting)
- should be in English.
- response_format: The format of the output, in one of these options: `json`, `text`, `srt`,
- `verbose_json`, or `vtt`.
- temperature: The sampling temperature, between 0 and 1. Higher values like 0.8 will make the
- output more random, while lower values like 0.2 will make it more focused and
- deterministic. If set to 0, the model will use
- [log probability](https://en.wikipedia.org/wiki/Log_probability) to
- automatically increase the temperature until certain thresholds are hit.
- 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
- """
- body = deepcopy_minimal(
- {
- "file": file,
- "model": model,
- "prompt": prompt,
- "response_format": response_format,
- "temperature": temperature,
- }
- )
- files = extract_files(cast(Mapping[str, object], body), paths=[["file"]])
- # It should be noted that the actual Content-Type header that will be
- # sent to the server will contain a `boundary` parameter, e.g.
- # multipart/form-data; boundary=---abc--
- extra_headers = {"Content-Type": "multipart/form-data", **(extra_headers or {})}
- return self._post( # type: ignore[return-value]
- "/audio/translations",
- body=maybe_transform(body, translation_create_params.TranslationCreateParams),
- files=files,
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=_get_response_format_type(response_format),
- )
- class AsyncTranslations(AsyncAPIResource):
- @cached_property
- def with_raw_response(self) -> AsyncTranslationsWithRawResponse:
- """
- 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 AsyncTranslationsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> AsyncTranslationsWithStreamingResponse:
- """
- 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 AsyncTranslationsWithStreamingResponse(self)
- @overload
- async def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Union[Literal["json"], Omit] = omit,
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> Translation: ...
- @overload
- async def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Literal["verbose_json"],
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> TranslationVerbose: ...
- @overload
- async def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- response_format: Literal["text", "srt", "vtt"],
- prompt: str | Omit = omit,
- temperature: float | 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,
- ) -> str: ...
- async def create(
- self,
- *,
- file: FileTypes,
- model: Union[str, AudioModel],
- prompt: str | Omit = omit,
- response_format: Union[AudioResponseFormat, Omit] = omit,
- temperature: float | 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,
- ) -> Translation | TranslationVerbose | str:
- """
- Translates audio into English.
- Args:
- file: The audio file object (not file name) translate, in one of these formats: flac,
- mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.
- model: ID of the model to use. Only `whisper-1` (which is powered by our open source
- Whisper V2 model) is currently available.
- prompt: An optional text to guide the model's style or continue a previous audio
- segment. The
- [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting)
- should be in English.
- response_format: The format of the output, in one of these options: `json`, `text`, `srt`,
- `verbose_json`, or `vtt`.
- temperature: The sampling temperature, between 0 and 1. Higher values like 0.8 will make the
- output more random, while lower values like 0.2 will make it more focused and
- deterministic. If set to 0, the model will use
- [log probability](https://en.wikipedia.org/wiki/Log_probability) to
- automatically increase the temperature until certain thresholds are hit.
- 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
- """
- body = deepcopy_minimal(
- {
- "file": file,
- "model": model,
- "prompt": prompt,
- "response_format": response_format,
- "temperature": temperature,
- }
- )
- files = extract_files(cast(Mapping[str, object], body), paths=[["file"]])
- # It should be noted that the actual Content-Type header that will be
- # sent to the server will contain a `boundary` parameter, e.g.
- # multipart/form-data; boundary=---abc--
- extra_headers = {"Content-Type": "multipart/form-data", **(extra_headers or {})}
- return await self._post(
- "/audio/translations",
- body=await async_maybe_transform(body, translation_create_params.TranslationCreateParams),
- files=files,
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=_get_response_format_type(response_format),
- )
- class TranslationsWithRawResponse:
- def __init__(self, translations: Translations) -> None:
- self._translations = translations
- self.create = _legacy_response.to_raw_response_wrapper(
- translations.create,
- )
- class AsyncTranslationsWithRawResponse:
- def __init__(self, translations: AsyncTranslations) -> None:
- self._translations = translations
- self.create = _legacy_response.async_to_raw_response_wrapper(
- translations.create,
- )
- class TranslationsWithStreamingResponse:
- def __init__(self, translations: Translations) -> None:
- self._translations = translations
- self.create = to_streamed_response_wrapper(
- translations.create,
- )
- class AsyncTranslationsWithStreamingResponse:
- def __init__(self, translations: AsyncTranslations) -> None:
- self._translations = translations
- self.create = async_to_streamed_response_wrapper(
- translations.create,
- )
- def _get_response_format_type(
- response_format: AudioResponseFormat | Omit,
- ) -> type[Translation | TranslationVerbose | str]:
- if isinstance(response_format, Omit) or response_format is None: # pyright: ignore[reportUnnecessaryComparison]
- return Translation
- if response_format == "json":
- return Translation
- elif response_format == "verbose_json":
- return TranslationVerbose
- elif response_format == "srt" or response_format == "text" or response_format == "vtt":
- return str
- elif TYPE_CHECKING and response_format != "diarized_json": # type: ignore[unreachable]
- assert_never(response_format)
- else:
- log.warning("Unexpected audio response format: %s", response_format)
- return Translation
|