Skip to content

docs(raw responses): fix duplicate the #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/codex/resources/health.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class HealthResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> HealthResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -101,7 +101,7 @@ class AsyncHealthResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncHealthResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/organizations/billing.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class BillingResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> BillingResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -111,7 +111,7 @@ class AsyncBillingResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncBillingResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/organizations/organizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def billing(self) -> BillingResource:
@cached_property
def with_raw_response(self) -> OrganizationsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -93,7 +93,7 @@ def billing(self) -> AsyncBillingResource:
@cached_property
def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/projects/access_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AccessKeysResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> AccessKeysResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -306,7 +306,7 @@ class AsyncAccessKeysResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncAccessKeysResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/projects/entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class EntriesResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> EntriesResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -351,7 +351,7 @@ class AsyncEntriesResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncEntriesResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/projects/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def entries(self) -> EntriesResource:
@cached_property
def with_raw_response(self) -> ProjectsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -324,7 +324,7 @@ def entries(self) -> AsyncEntriesResource:
@cached_property
def with_raw_response(self) -> AsyncProjectsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/users/myself/api_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class APIKeyResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> APIKeyResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -63,7 +63,7 @@ class AsyncAPIKeyResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncAPIKeyResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/users/myself/myself.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def organizations(self) -> OrganizationsResource:
@cached_property
def with_raw_response(self) -> MyselfResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -95,7 +95,7 @@ def organizations(self) -> AsyncOrganizationsResource:
@cached_property
def with_raw_response(self) -> AsyncMyselfResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/users/myself/organizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class OrganizationsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> OrganizationsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -63,7 +63,7 @@ class AsyncOrganizationsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/codex/resources/users/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def myself(self) -> MyselfResource:
@cached_property
def with_raw_response(self) -> UsersResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand All @@ -49,7 +49,7 @@ def myself(self) -> AsyncMyselfResource:
@cached_property
def with_raw_response(self) -> AsyncUsersResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return the
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/cleanlab/codex-python#accessing-raw-response-data-eg-headers
Expand Down