| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- from __future__ import annotations
- import typing_extensions
- from typing import List
- from typing_extensions import Literal
- import httpx
- from ..... import _legacy_response
- from ....._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
- from ....._utils import 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 .....pagination import SyncCursorPage, AsyncCursorPage
- from ....._base_client import AsyncPaginator, make_request_options
- from .....types.beta.threads.runs import step_list_params, step_retrieve_params
- from .....types.beta.threads.runs.run_step import RunStep
- from .....types.beta.threads.runs.run_step_include import RunStepInclude
- __all__ = ["Steps", "AsyncSteps"]
- class Steps(SyncAPIResource):
- @cached_property
- def with_raw_response(self) -> StepsWithRawResponse:
- """
- 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 StepsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> StepsWithStreamingResponse:
- """
- 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 StepsWithStreamingResponse(self)
- @typing_extensions.deprecated("The Assistants API is deprecated in favor of the Responses API")
- def retrieve(
- self,
- step_id: str,
- *,
- thread_id: str,
- run_id: str,
- include: List[RunStepInclude] | 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,
- ) -> RunStep:
- """
- Retrieves a run step.
- Args:
- include: A list of additional fields to include in the response. Currently the only
- supported value is `step_details.tool_calls[*].file_search.results[*].content`
- to fetch the file search result content.
- See the
- [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings)
- for more information.
- 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 thread_id:
- raise ValueError(f"Expected a non-empty value for `thread_id` but received {thread_id!r}")
- if not run_id:
- raise ValueError(f"Expected a non-empty value for `run_id` but received {run_id!r}")
- if not step_id:
- raise ValueError(f"Expected a non-empty value for `step_id` but received {step_id!r}")
- extra_headers = {"OpenAI-Beta": "assistants=v2", **(extra_headers or {})}
- return self._get(
- f"/threads/{thread_id}/runs/{run_id}/steps/{step_id}",
- options=make_request_options(
- extra_headers=extra_headers,
- extra_query=extra_query,
- extra_body=extra_body,
- timeout=timeout,
- query=maybe_transform({"include": include}, step_retrieve_params.StepRetrieveParams),
- ),
- cast_to=RunStep,
- )
- @typing_extensions.deprecated("The Assistants API is deprecated in favor of the Responses API")
- def list(
- self,
- run_id: str,
- *,
- thread_id: str,
- after: str | Omit = omit,
- before: str | Omit = omit,
- include: List[RunStepInclude] | Omit = omit,
- limit: int | Omit = omit,
- order: Literal["asc", "desc"] | 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,
- ) -> SyncCursorPage[RunStep]:
- """
- Returns a list of run steps belonging to a run.
- Args:
- after: A cursor for use in pagination. `after` is an object ID that defines your place
- in the list. For instance, if you make a list request and receive 100 objects,
- ending with obj_foo, your subsequent call can include after=obj_foo in order to
- fetch the next page of the list.
- before: A cursor for use in pagination. `before` is an object ID that defines your place
- in the list. For instance, if you make a list request and receive 100 objects,
- starting with obj_foo, your subsequent call can include before=obj_foo in order
- to fetch the previous page of the list.
- include: A list of additional fields to include in the response. Currently the only
- supported value is `step_details.tool_calls[*].file_search.results[*].content`
- to fetch the file search result content.
- See the
- [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings)
- for more information.
- limit: A limit on the number of objects to be returned. Limit can range between 1 and
- 100, and the default is 20.
- order: Sort order by the `created_at` timestamp of the objects. `asc` for ascending
- order and `desc` for descending order.
- 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 thread_id:
- raise ValueError(f"Expected a non-empty value for `thread_id` but received {thread_id!r}")
- if not run_id:
- raise ValueError(f"Expected a non-empty value for `run_id` but received {run_id!r}")
- extra_headers = {"OpenAI-Beta": "assistants=v2", **(extra_headers or {})}
- return self._get_api_list(
- f"/threads/{thread_id}/runs/{run_id}/steps",
- page=SyncCursorPage[RunStep],
- options=make_request_options(
- extra_headers=extra_headers,
- extra_query=extra_query,
- extra_body=extra_body,
- timeout=timeout,
- query=maybe_transform(
- {
- "after": after,
- "before": before,
- "include": include,
- "limit": limit,
- "order": order,
- },
- step_list_params.StepListParams,
- ),
- ),
- model=RunStep,
- )
- class AsyncSteps(AsyncAPIResource):
- @cached_property
- def with_raw_response(self) -> AsyncStepsWithRawResponse:
- """
- 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 AsyncStepsWithRawResponse(self)
- @cached_property
- def with_streaming_response(self) -> AsyncStepsWithStreamingResponse:
- """
- 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 AsyncStepsWithStreamingResponse(self)
- @typing_extensions.deprecated("The Assistants API is deprecated in favor of the Responses API")
- async def retrieve(
- self,
- step_id: str,
- *,
- thread_id: str,
- run_id: str,
- include: List[RunStepInclude] | 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,
- ) -> RunStep:
- """
- Retrieves a run step.
- Args:
- include: A list of additional fields to include in the response. Currently the only
- supported value is `step_details.tool_calls[*].file_search.results[*].content`
- to fetch the file search result content.
- See the
- [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings)
- for more information.
- 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 thread_id:
- raise ValueError(f"Expected a non-empty value for `thread_id` but received {thread_id!r}")
- if not run_id:
- raise ValueError(f"Expected a non-empty value for `run_id` but received {run_id!r}")
- if not step_id:
- raise ValueError(f"Expected a non-empty value for `step_id` but received {step_id!r}")
- extra_headers = {"OpenAI-Beta": "assistants=v2", **(extra_headers or {})}
- return await self._get(
- f"/threads/{thread_id}/runs/{run_id}/steps/{step_id}",
- options=make_request_options(
- extra_headers=extra_headers,
- extra_query=extra_query,
- extra_body=extra_body,
- timeout=timeout,
- query=await async_maybe_transform({"include": include}, step_retrieve_params.StepRetrieveParams),
- ),
- cast_to=RunStep,
- )
- @typing_extensions.deprecated("The Assistants API is deprecated in favor of the Responses API")
- def list(
- self,
- run_id: str,
- *,
- thread_id: str,
- after: str | Omit = omit,
- before: str | Omit = omit,
- include: List[RunStepInclude] | Omit = omit,
- limit: int | Omit = omit,
- order: Literal["asc", "desc"] | 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,
- ) -> AsyncPaginator[RunStep, AsyncCursorPage[RunStep]]:
- """
- Returns a list of run steps belonging to a run.
- Args:
- after: A cursor for use in pagination. `after` is an object ID that defines your place
- in the list. For instance, if you make a list request and receive 100 objects,
- ending with obj_foo, your subsequent call can include after=obj_foo in order to
- fetch the next page of the list.
- before: A cursor for use in pagination. `before` is an object ID that defines your place
- in the list. For instance, if you make a list request and receive 100 objects,
- starting with obj_foo, your subsequent call can include before=obj_foo in order
- to fetch the previous page of the list.
- include: A list of additional fields to include in the response. Currently the only
- supported value is `step_details.tool_calls[*].file_search.results[*].content`
- to fetch the file search result content.
- See the
- [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings)
- for more information.
- limit: A limit on the number of objects to be returned. Limit can range between 1 and
- 100, and the default is 20.
- order: Sort order by the `created_at` timestamp of the objects. `asc` for ascending
- order and `desc` for descending order.
- 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 thread_id:
- raise ValueError(f"Expected a non-empty value for `thread_id` but received {thread_id!r}")
- if not run_id:
- raise ValueError(f"Expected a non-empty value for `run_id` but received {run_id!r}")
- extra_headers = {"OpenAI-Beta": "assistants=v2", **(extra_headers or {})}
- return self._get_api_list(
- f"/threads/{thread_id}/runs/{run_id}/steps",
- page=AsyncCursorPage[RunStep],
- options=make_request_options(
- extra_headers=extra_headers,
- extra_query=extra_query,
- extra_body=extra_body,
- timeout=timeout,
- query=maybe_transform(
- {
- "after": after,
- "before": before,
- "include": include,
- "limit": limit,
- "order": order,
- },
- step_list_params.StepListParams,
- ),
- ),
- model=RunStep,
- )
- class StepsWithRawResponse:
- def __init__(self, steps: Steps) -> None:
- self._steps = steps
- self.retrieve = ( # pyright: ignore[reportDeprecated]
- _legacy_response.to_raw_response_wrapper(
- steps.retrieve, # pyright: ignore[reportDeprecated],
- )
- )
- self.list = ( # pyright: ignore[reportDeprecated]
- _legacy_response.to_raw_response_wrapper(
- steps.list, # pyright: ignore[reportDeprecated],
- )
- )
- class AsyncStepsWithRawResponse:
- def __init__(self, steps: AsyncSteps) -> None:
- self._steps = steps
- self.retrieve = ( # pyright: ignore[reportDeprecated]
- _legacy_response.async_to_raw_response_wrapper(
- steps.retrieve, # pyright: ignore[reportDeprecated],
- )
- )
- self.list = ( # pyright: ignore[reportDeprecated]
- _legacy_response.async_to_raw_response_wrapper(
- steps.list, # pyright: ignore[reportDeprecated],
- )
- )
- class StepsWithStreamingResponse:
- def __init__(self, steps: Steps) -> None:
- self._steps = steps
- self.retrieve = ( # pyright: ignore[reportDeprecated]
- to_streamed_response_wrapper(
- steps.retrieve, # pyright: ignore[reportDeprecated],
- )
- )
- self.list = ( # pyright: ignore[reportDeprecated]
- to_streamed_response_wrapper(
- steps.list, # pyright: ignore[reportDeprecated],
- )
- )
- class AsyncStepsWithStreamingResponse:
- def __init__(self, steps: AsyncSteps) -> None:
- self._steps = steps
- self.retrieve = ( # pyright: ignore[reportDeprecated]
- async_to_streamed_response_wrapper(
- steps.retrieve, # pyright: ignore[reportDeprecated],
- )
- )
- self.list = ( # pyright: ignore[reportDeprecated]
- async_to_streamed_response_wrapper(
- steps.list, # pyright: ignore[reportDeprecated],
- )
- )
|