| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- from __future__ import annotations
- import httpx
- from .... import _legacy_response
- from ...._types import Body, Query, Headers, NotGiven, not_given
- from ...._compat import cached_property
- from ...._resource import SyncAPIResource, AsyncAPIResource
- from ...._response import (
- StreamedBinaryAPIResponse,
- AsyncStreamedBinaryAPIResponse,
- to_custom_streamed_response_wrapper,
- async_to_custom_streamed_response_wrapper,
- )
- from ...._base_client import make_request_options
- __all__ = ["Content", "AsyncContent"]
- class Content(SyncAPIResource):
- @cached_property
- def with_raw_response(self) -> ContentWithRawResponse:
- """
- 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 ContentWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> ContentWithStreamingResponse:
- """
- 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 ContentWithStreamingResponse(self)
- def retrieve(
- self,
- file_id: str,
- *,
- container_id: str,
- # 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,
- ) -> _legacy_response.HttpxBinaryResponseContent:
- """
- Retrieve Container File Content
- Args:
- 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
- """
- if not container_id:
- raise ValueError(f"Expected a non-empty value for `container_id` but received {container_id!r}")
- if not file_id:
- raise ValueError(f"Expected a non-empty value for `file_id` but received {file_id!r}")
- extra_headers = {"Accept": "application/binary", **(extra_headers or {})}
- return self._get(
- f"/containers/{container_id}/files/{file_id}/content",
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=_legacy_response.HttpxBinaryResponseContent,
- )
- class AsyncContent(AsyncAPIResource):
- @cached_property
- def with_raw_response(self) -> AsyncContentWithRawResponse:
- """
- 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 AsyncContentWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> AsyncContentWithStreamingResponse:
- """
- 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 AsyncContentWithStreamingResponse(self)
- async def retrieve(
- self,
- file_id: str,
- *,
- container_id: str,
- # 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,
- ) -> _legacy_response.HttpxBinaryResponseContent:
- """
- Retrieve Container File Content
- Args:
- 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
- """
- if not container_id:
- raise ValueError(f"Expected a non-empty value for `container_id` but received {container_id!r}")
- if not file_id:
- raise ValueError(f"Expected a non-empty value for `file_id` but received {file_id!r}")
- extra_headers = {"Accept": "application/binary", **(extra_headers or {})}
- return await self._get(
- f"/containers/{container_id}/files/{file_id}/content",
- options=make_request_options(
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
- ),
- cast_to=_legacy_response.HttpxBinaryResponseContent,
- )
- class ContentWithRawResponse:
- def __init__(self, content: Content) -> None:
- self._content = content
- self.retrieve = _legacy_response.to_raw_response_wrapper(
- content.retrieve,
- )
- class AsyncContentWithRawResponse:
- def __init__(self, content: AsyncContent) -> None:
- self._content = content
- self.retrieve = _legacy_response.async_to_raw_response_wrapper(
- content.retrieve,
- )
- class ContentWithStreamingResponse:
- def __init__(self, content: Content) -> None:
- self._content = content
- self.retrieve = to_custom_streamed_response_wrapper(
- content.retrieve,
- StreamedBinaryAPIResponse,
- )
- class AsyncContentWithStreamingResponse:
- def __init__(self, content: AsyncContent) -> None:
- self._content = content
- self.retrieve = async_to_custom_streamed_response_wrapper(
- content.retrieve,
- AsyncStreamedBinaryAPIResponse,
- )
|