Skip to content
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/contextual/resources/agents/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def tune(self) -> TuneResource:
@cached_property
def with_raw_response(self) -> AgentsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -375,7 +375,7 @@ def tune(self) -> AsyncTuneResource:
@cached_property
def with_raw_response(self) -> AsyncAgentsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def evaluate(self) -> EvaluateResource:
@cached_property
def with_raw_response(self) -> DatasetsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand All @@ -49,7 +49,7 @@ def evaluate(self) -> AsyncEvaluateResource:
@cached_property
def with_raw_response(self) -> AsyncDatasetsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/datasets/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class EvaluateResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> EvaluateResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -427,7 +427,7 @@ class AsyncEvaluateResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncEvaluateResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/evaluate/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def jobs(self) -> JobsResource:
@cached_property
def with_raw_response(self) -> EvaluateResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -152,7 +152,7 @@ def jobs(self) -> AsyncJobsResource:
@cached_property
def with_raw_response(self) -> AsyncEvaluateResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/evaluate/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class JobsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> JobsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -168,7 +168,7 @@ class AsyncJobsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncJobsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class QueryResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> QueryResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -307,7 +307,7 @@ class AsyncQueryResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncQueryResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/tune/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class JobsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> JobsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -168,7 +168,7 @@ class AsyncJobsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncJobsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/tune/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ModelsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> ModelsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -79,7 +79,7 @@ class AsyncModelsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncModelsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/agents/tune/tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def models(self) -> ModelsResource:
@cached_property
def with_raw_response(self) -> TuneResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -189,7 +189,7 @@ def models(self) -> AsyncModelsResource:
@cached_property
def with_raw_response(self) -> AsyncTuneResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/datastores/datastores.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def documents(self) -> DocumentsResource:
@cached_property
def with_raw_response(self) -> DatastoresResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -245,7 +245,7 @@ def documents(self) -> AsyncDocumentsResource:
@cached_property
def with_raw_response(self) -> AsyncDatastoresResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/datastores/documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class DocumentsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> DocumentsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -268,7 +268,7 @@ class AsyncDocumentsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncDocumentsResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down
4 changes: 2 additions & 2 deletions src/contextual/resources/lmunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class LMUnitResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> LMUnitResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down Expand Up @@ -105,7 +105,7 @@ class AsyncLMUnitResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncLMUnitResourceWithRawResponse:
"""
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/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
Expand Down