chore: automatic commit 2025-04-30 12:48
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
from .checkpoints import (
|
||||
Checkpoints,
|
||||
AsyncCheckpoints,
|
||||
CheckpointsWithRawResponse,
|
||||
AsyncCheckpointsWithRawResponse,
|
||||
CheckpointsWithStreamingResponse,
|
||||
AsyncCheckpointsWithStreamingResponse,
|
||||
)
|
||||
from .permissions import (
|
||||
Permissions,
|
||||
AsyncPermissions,
|
||||
PermissionsWithRawResponse,
|
||||
AsyncPermissionsWithRawResponse,
|
||||
PermissionsWithStreamingResponse,
|
||||
AsyncPermissionsWithStreamingResponse,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Permissions",
|
||||
"AsyncPermissions",
|
||||
"PermissionsWithRawResponse",
|
||||
"AsyncPermissionsWithRawResponse",
|
||||
"PermissionsWithStreamingResponse",
|
||||
"AsyncPermissionsWithStreamingResponse",
|
||||
"Checkpoints",
|
||||
"AsyncCheckpoints",
|
||||
"CheckpointsWithRawResponse",
|
||||
"AsyncCheckpointsWithRawResponse",
|
||||
"CheckpointsWithStreamingResponse",
|
||||
"AsyncCheckpointsWithStreamingResponse",
|
||||
]
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,102 @@
|
||||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from ...._compat import cached_property
|
||||
from .permissions import (
|
||||
Permissions,
|
||||
AsyncPermissions,
|
||||
PermissionsWithRawResponse,
|
||||
AsyncPermissionsWithRawResponse,
|
||||
PermissionsWithStreamingResponse,
|
||||
AsyncPermissionsWithStreamingResponse,
|
||||
)
|
||||
from ...._resource import SyncAPIResource, AsyncAPIResource
|
||||
|
||||
__all__ = ["Checkpoints", "AsyncCheckpoints"]
|
||||
|
||||
|
||||
class Checkpoints(SyncAPIResource):
|
||||
@cached_property
|
||||
def permissions(self) -> Permissions:
|
||||
return Permissions(self._client)
|
||||
|
||||
@cached_property
|
||||
def with_raw_response(self) -> CheckpointsWithRawResponse:
|
||||
"""
|
||||
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 CheckpointsWithRawResponse(self)
|
||||
|
||||
@cached_property
|
||||
def with_streaming_response(self) -> CheckpointsWithStreamingResponse:
|
||||
"""
|
||||
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 CheckpointsWithStreamingResponse(self)
|
||||
|
||||
|
||||
class AsyncCheckpoints(AsyncAPIResource):
|
||||
@cached_property
|
||||
def permissions(self) -> AsyncPermissions:
|
||||
return AsyncPermissions(self._client)
|
||||
|
||||
@cached_property
|
||||
def with_raw_response(self) -> AsyncCheckpointsWithRawResponse:
|
||||
"""
|
||||
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 AsyncCheckpointsWithRawResponse(self)
|
||||
|
||||
@cached_property
|
||||
def with_streaming_response(self) -> AsyncCheckpointsWithStreamingResponse:
|
||||
"""
|
||||
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 AsyncCheckpointsWithStreamingResponse(self)
|
||||
|
||||
|
||||
class CheckpointsWithRawResponse:
|
||||
def __init__(self, checkpoints: Checkpoints) -> None:
|
||||
self._checkpoints = checkpoints
|
||||
|
||||
@cached_property
|
||||
def permissions(self) -> PermissionsWithRawResponse:
|
||||
return PermissionsWithRawResponse(self._checkpoints.permissions)
|
||||
|
||||
|
||||
class AsyncCheckpointsWithRawResponse:
|
||||
def __init__(self, checkpoints: AsyncCheckpoints) -> None:
|
||||
self._checkpoints = checkpoints
|
||||
|
||||
@cached_property
|
||||
def permissions(self) -> AsyncPermissionsWithRawResponse:
|
||||
return AsyncPermissionsWithRawResponse(self._checkpoints.permissions)
|
||||
|
||||
|
||||
class CheckpointsWithStreamingResponse:
|
||||
def __init__(self, checkpoints: Checkpoints) -> None:
|
||||
self._checkpoints = checkpoints
|
||||
|
||||
@cached_property
|
||||
def permissions(self) -> PermissionsWithStreamingResponse:
|
||||
return PermissionsWithStreamingResponse(self._checkpoints.permissions)
|
||||
|
||||
|
||||
class AsyncCheckpointsWithStreamingResponse:
|
||||
def __init__(self, checkpoints: AsyncCheckpoints) -> None:
|
||||
self._checkpoints = checkpoints
|
||||
|
||||
@cached_property
|
||||
def permissions(self) -> AsyncPermissionsWithStreamingResponse:
|
||||
return AsyncPermissionsWithStreamingResponse(self._checkpoints.permissions)
|
||||
@@ -0,0 +1,419 @@
|
||||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import List
|
||||
from typing_extensions import Literal
|
||||
|
||||
import httpx
|
||||
|
||||
from .... import _legacy_response
|
||||
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
||||
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 SyncPage, AsyncPage
|
||||
from ...._base_client import AsyncPaginator, make_request_options
|
||||
from ....types.fine_tuning.checkpoints import permission_create_params, permission_retrieve_params
|
||||
from ....types.fine_tuning.checkpoints.permission_create_response import PermissionCreateResponse
|
||||
from ....types.fine_tuning.checkpoints.permission_delete_response import PermissionDeleteResponse
|
||||
from ....types.fine_tuning.checkpoints.permission_retrieve_response import PermissionRetrieveResponse
|
||||
|
||||
__all__ = ["Permissions", "AsyncPermissions"]
|
||||
|
||||
|
||||
class Permissions(SyncAPIResource):
|
||||
@cached_property
|
||||
def with_raw_response(self) -> PermissionsWithRawResponse:
|
||||
"""
|
||||
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 PermissionsWithRawResponse(self)
|
||||
|
||||
@cached_property
|
||||
def with_streaming_response(self) -> PermissionsWithStreamingResponse:
|
||||
"""
|
||||
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 PermissionsWithStreamingResponse(self)
|
||||
|
||||
def create(
|
||||
self,
|
||||
fine_tuned_model_checkpoint: str,
|
||||
*,
|
||||
project_ids: List[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,
|
||||
) -> SyncPage[PermissionCreateResponse]:
|
||||
"""
|
||||
**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
This enables organization owners to share fine-tuned models with other projects
|
||||
in their organization.
|
||||
|
||||
Args:
|
||||
project_ids: The project identifiers to grant access to.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
return self._get_api_list(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions",
|
||||
page=SyncPage[PermissionCreateResponse],
|
||||
body=maybe_transform({"project_ids": project_ids}, permission_create_params.PermissionCreateParams),
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
model=PermissionCreateResponse,
|
||||
method="post",
|
||||
)
|
||||
|
||||
def retrieve(
|
||||
self,
|
||||
fine_tuned_model_checkpoint: str,
|
||||
*,
|
||||
after: str | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
order: Literal["ascending", "descending"] | NotGiven = NOT_GIVEN,
|
||||
project_id: str | NotGiven = NOT_GIVEN,
|
||||
# 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,
|
||||
) -> PermissionRetrieveResponse:
|
||||
"""
|
||||
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
Organization owners can use this endpoint to view all permissions for a
|
||||
fine-tuned model checkpoint.
|
||||
|
||||
Args:
|
||||
after: Identifier for the last permission ID from the previous pagination request.
|
||||
|
||||
limit: Number of permissions to retrieve.
|
||||
|
||||
order: The order in which to retrieve permissions.
|
||||
|
||||
project_id: The ID of the project to get permissions for.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
return self._get(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers,
|
||||
extra_query=extra_query,
|
||||
extra_body=extra_body,
|
||||
timeout=timeout,
|
||||
query=maybe_transform(
|
||||
{
|
||||
"after": after,
|
||||
"limit": limit,
|
||||
"order": order,
|
||||
"project_id": project_id,
|
||||
},
|
||||
permission_retrieve_params.PermissionRetrieveParams,
|
||||
),
|
||||
),
|
||||
cast_to=PermissionRetrieveResponse,
|
||||
)
|
||||
|
||||
def delete(
|
||||
self,
|
||||
permission_id: str,
|
||||
*,
|
||||
fine_tuned_model_checkpoint: 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,
|
||||
) -> PermissionDeleteResponse:
|
||||
"""
|
||||
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
Organization owners can use this endpoint to delete a permission for a
|
||||
fine-tuned model checkpoint.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
if not permission_id:
|
||||
raise ValueError(f"Expected a non-empty value for `permission_id` but received {permission_id!r}")
|
||||
return self._delete(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions/{permission_id}",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
cast_to=PermissionDeleteResponse,
|
||||
)
|
||||
|
||||
|
||||
class AsyncPermissions(AsyncAPIResource):
|
||||
@cached_property
|
||||
def with_raw_response(self) -> AsyncPermissionsWithRawResponse:
|
||||
"""
|
||||
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 AsyncPermissionsWithRawResponse(self)
|
||||
|
||||
@cached_property
|
||||
def with_streaming_response(self) -> AsyncPermissionsWithStreamingResponse:
|
||||
"""
|
||||
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 AsyncPermissionsWithStreamingResponse(self)
|
||||
|
||||
def create(
|
||||
self,
|
||||
fine_tuned_model_checkpoint: str,
|
||||
*,
|
||||
project_ids: List[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,
|
||||
) -> AsyncPaginator[PermissionCreateResponse, AsyncPage[PermissionCreateResponse]]:
|
||||
"""
|
||||
**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
This enables organization owners to share fine-tuned models with other projects
|
||||
in their organization.
|
||||
|
||||
Args:
|
||||
project_ids: The project identifiers to grant access to.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
return self._get_api_list(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions",
|
||||
page=AsyncPage[PermissionCreateResponse],
|
||||
body=maybe_transform({"project_ids": project_ids}, permission_create_params.PermissionCreateParams),
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
model=PermissionCreateResponse,
|
||||
method="post",
|
||||
)
|
||||
|
||||
async def retrieve(
|
||||
self,
|
||||
fine_tuned_model_checkpoint: str,
|
||||
*,
|
||||
after: str | NotGiven = NOT_GIVEN,
|
||||
limit: int | NotGiven = NOT_GIVEN,
|
||||
order: Literal["ascending", "descending"] | NotGiven = NOT_GIVEN,
|
||||
project_id: str | NotGiven = NOT_GIVEN,
|
||||
# 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,
|
||||
) -> PermissionRetrieveResponse:
|
||||
"""
|
||||
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
Organization owners can use this endpoint to view all permissions for a
|
||||
fine-tuned model checkpoint.
|
||||
|
||||
Args:
|
||||
after: Identifier for the last permission ID from the previous pagination request.
|
||||
|
||||
limit: Number of permissions to retrieve.
|
||||
|
||||
order: The order in which to retrieve permissions.
|
||||
|
||||
project_id: The ID of the project to get permissions for.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
return await self._get(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers,
|
||||
extra_query=extra_query,
|
||||
extra_body=extra_body,
|
||||
timeout=timeout,
|
||||
query=await async_maybe_transform(
|
||||
{
|
||||
"after": after,
|
||||
"limit": limit,
|
||||
"order": order,
|
||||
"project_id": project_id,
|
||||
},
|
||||
permission_retrieve_params.PermissionRetrieveParams,
|
||||
),
|
||||
),
|
||||
cast_to=PermissionRetrieveResponse,
|
||||
)
|
||||
|
||||
async def delete(
|
||||
self,
|
||||
permission_id: str,
|
||||
*,
|
||||
fine_tuned_model_checkpoint: 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,
|
||||
) -> PermissionDeleteResponse:
|
||||
"""
|
||||
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys).
|
||||
|
||||
Organization owners can use this endpoint to delete a permission for a
|
||||
fine-tuned model checkpoint.
|
||||
|
||||
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 fine_tuned_model_checkpoint:
|
||||
raise ValueError(
|
||||
f"Expected a non-empty value for `fine_tuned_model_checkpoint` but received {fine_tuned_model_checkpoint!r}"
|
||||
)
|
||||
if not permission_id:
|
||||
raise ValueError(f"Expected a non-empty value for `permission_id` but received {permission_id!r}")
|
||||
return await self._delete(
|
||||
f"/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions/{permission_id}",
|
||||
options=make_request_options(
|
||||
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
||||
),
|
||||
cast_to=PermissionDeleteResponse,
|
||||
)
|
||||
|
||||
|
||||
class PermissionsWithRawResponse:
|
||||
def __init__(self, permissions: Permissions) -> None:
|
||||
self._permissions = permissions
|
||||
|
||||
self.create = _legacy_response.to_raw_response_wrapper(
|
||||
permissions.create,
|
||||
)
|
||||
self.retrieve = _legacy_response.to_raw_response_wrapper(
|
||||
permissions.retrieve,
|
||||
)
|
||||
self.delete = _legacy_response.to_raw_response_wrapper(
|
||||
permissions.delete,
|
||||
)
|
||||
|
||||
|
||||
class AsyncPermissionsWithRawResponse:
|
||||
def __init__(self, permissions: AsyncPermissions) -> None:
|
||||
self._permissions = permissions
|
||||
|
||||
self.create = _legacy_response.async_to_raw_response_wrapper(
|
||||
permissions.create,
|
||||
)
|
||||
self.retrieve = _legacy_response.async_to_raw_response_wrapper(
|
||||
permissions.retrieve,
|
||||
)
|
||||
self.delete = _legacy_response.async_to_raw_response_wrapper(
|
||||
permissions.delete,
|
||||
)
|
||||
|
||||
|
||||
class PermissionsWithStreamingResponse:
|
||||
def __init__(self, permissions: Permissions) -> None:
|
||||
self._permissions = permissions
|
||||
|
||||
self.create = to_streamed_response_wrapper(
|
||||
permissions.create,
|
||||
)
|
||||
self.retrieve = to_streamed_response_wrapper(
|
||||
permissions.retrieve,
|
||||
)
|
||||
self.delete = to_streamed_response_wrapper(
|
||||
permissions.delete,
|
||||
)
|
||||
|
||||
|
||||
class AsyncPermissionsWithStreamingResponse:
|
||||
def __init__(self, permissions: AsyncPermissions) -> None:
|
||||
self._permissions = permissions
|
||||
|
||||
self.create = async_to_streamed_response_wrapper(
|
||||
permissions.create,
|
||||
)
|
||||
self.retrieve = async_to_streamed_response_wrapper(
|
||||
permissions.retrieve,
|
||||
)
|
||||
self.delete = async_to_streamed_response_wrapper(
|
||||
permissions.delete,
|
||||
)
|
||||
Reference in New Issue
Block a user