Skip to content

Commit 5342fdf

Browse files
docs(raw responses): fix duplicate the (#25)
1 parent d1f86c3 commit 5342fdf

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

src/contextual/resources/agents/agents.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def tune(self) -> TuneResource:
8181
@cached_property
8282
def with_raw_response(self) -> AgentsResourceWithRawResponse:
8383
"""
84-
This property can be used as a prefix for any HTTP method call to return the
84+
This property can be used as a prefix for any HTTP method call to return
8585
the raw response object instead of the parsed content.
8686
8787
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -375,7 +375,7 @@ def tune(self) -> AsyncTuneResource:
375375
@cached_property
376376
def with_raw_response(self) -> AsyncAgentsResourceWithRawResponse:
377377
"""
378-
This property can be used as a prefix for any HTTP method call to return the
378+
This property can be used as a prefix for any HTTP method call to return
379379
the raw response object instead of the parsed content.
380380
381381
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/datasets/datasets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def evaluate(self) -> EvaluateResource:
2424
@cached_property
2525
def with_raw_response(self) -> DatasetsResourceWithRawResponse:
2626
"""
27-
This property can be used as a prefix for any HTTP method call to return the
27+
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
3030
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -49,7 +49,7 @@ def evaluate(self) -> AsyncEvaluateResource:
4949
@cached_property
5050
def with_raw_response(self) -> AsyncDatasetsResourceWithRawResponse:
5151
"""
52-
This property can be used as a prefix for any HTTP method call to return the
52+
This property can be used as a prefix for any HTTP method call to return
5353
the raw response object instead of the parsed content.
5454
5555
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/datasets/evaluate.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class EvaluateResource(SyncAPIResource):
4949
@cached_property
5050
def with_raw_response(self) -> EvaluateResourceWithRawResponse:
5151
"""
52-
This property can be used as a prefix for any HTTP method call to return the
52+
This property can be used as a prefix for any HTTP method call to return
5353
the raw response object instead of the parsed content.
5454
5555
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -427,7 +427,7 @@ class AsyncEvaluateResource(AsyncAPIResource):
427427
@cached_property
428428
def with_raw_response(self) -> AsyncEvaluateResourceWithRawResponse:
429429
"""
430-
This property can be used as a prefix for any HTTP method call to return the
430+
This property can be used as a prefix for any HTTP method call to return
431431
the raw response object instead of the parsed content.
432432
433433
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/evaluate/evaluate.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def jobs(self) -> JobsResource:
4545
@cached_property
4646
def with_raw_response(self) -> EvaluateResourceWithRawResponse:
4747
"""
48-
This property can be used as a prefix for any HTTP method call to return the
48+
This property can be used as a prefix for any HTTP method call to return
4949
the raw response object instead of the parsed content.
5050
5151
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -152,7 +152,7 @@ def jobs(self) -> AsyncJobsResource:
152152
@cached_property
153153
def with_raw_response(self) -> AsyncEvaluateResourceWithRawResponse:
154154
"""
155-
This property can be used as a prefix for any HTTP method call to return the
155+
This property can be used as a prefix for any HTTP method call to return
156156
the raw response object instead of the parsed content.
157157
158158
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/evaluate/jobs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class JobsResource(SyncAPIResource):
2424
@cached_property
2525
def with_raw_response(self) -> JobsResourceWithRawResponse:
2626
"""
27-
This property can be used as a prefix for any HTTP method call to return the
27+
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
3030
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -168,7 +168,7 @@ class AsyncJobsResource(AsyncAPIResource):
168168
@cached_property
169169
def with_raw_response(self) -> AsyncJobsResourceWithRawResponse:
170170
"""
171-
This property can be used as a prefix for any HTTP method call to return the
171+
This property can be used as a prefix for any HTTP method call to return
172172
the raw response object instead of the parsed content.
173173
174174
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/query.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class QueryResource(SyncAPIResource):
3939
@cached_property
4040
def with_raw_response(self) -> QueryResourceWithRawResponse:
4141
"""
42-
This property can be used as a prefix for any HTTP method call to return the
42+
This property can be used as a prefix for any HTTP method call to return
4343
the raw response object instead of the parsed content.
4444
4545
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -307,7 +307,7 @@ class AsyncQueryResource(AsyncAPIResource):
307307
@cached_property
308308
def with_raw_response(self) -> AsyncQueryResourceWithRawResponse:
309309
"""
310-
This property can be used as a prefix for any HTTP method call to return the
310+
This property can be used as a prefix for any HTTP method call to return
311311
the raw response object instead of the parsed content.
312312
313313
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/tune/jobs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class JobsResource(SyncAPIResource):
2424
@cached_property
2525
def with_raw_response(self) -> JobsResourceWithRawResponse:
2626
"""
27-
This property can be used as a prefix for any HTTP method call to return the
27+
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
3030
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -168,7 +168,7 @@ class AsyncJobsResource(AsyncAPIResource):
168168
@cached_property
169169
def with_raw_response(self) -> AsyncJobsResourceWithRawResponse:
170170
"""
171-
This property can be used as a prefix for any HTTP method call to return the
171+
This property can be used as a prefix for any HTTP method call to return
172172
the raw response object instead of the parsed content.
173173
174174
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/tune/models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ModelsResource(SyncAPIResource):
2323
@cached_property
2424
def with_raw_response(self) -> ModelsResourceWithRawResponse:
2525
"""
26-
This property can be used as a prefix for any HTTP method call to return the
26+
This property can be used as a prefix for any HTTP method call to return
2727
the raw response object instead of the parsed content.
2828
2929
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -79,7 +79,7 @@ class AsyncModelsResource(AsyncAPIResource):
7979
@cached_property
8080
def with_raw_response(self) -> AsyncModelsResourceWithRawResponse:
8181
"""
82-
This property can be used as a prefix for any HTTP method call to return the
82+
This property can be used as a prefix for any HTTP method call to return
8383
the raw response object instead of the parsed content.
8484
8585
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/agents/tune/tune.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def models(self) -> ModelsResource:
5656
@cached_property
5757
def with_raw_response(self) -> TuneResourceWithRawResponse:
5858
"""
59-
This property can be used as a prefix for any HTTP method call to return the
59+
This property can be used as a prefix for any HTTP method call to return
6060
the raw response object instead of the parsed content.
6161
6262
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -189,7 +189,7 @@ def models(self) -> AsyncModelsResource:
189189
@cached_property
190190
def with_raw_response(self) -> AsyncTuneResourceWithRawResponse:
191191
"""
192-
This property can be used as a prefix for any HTTP method call to return the
192+
This property can be used as a prefix for any HTTP method call to return
193193
the raw response object instead of the parsed content.
194194
195195
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/datastores/datastores.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def documents(self) -> DocumentsResource:
4343
@cached_property
4444
def with_raw_response(self) -> DatastoresResourceWithRawResponse:
4545
"""
46-
This property can be used as a prefix for any HTTP method call to return the
46+
This property can be used as a prefix for any HTTP method call to return
4747
the raw response object instead of the parsed content.
4848
4949
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -245,7 +245,7 @@ def documents(self) -> AsyncDocumentsResource:
245245
@cached_property
246246
def with_raw_response(self) -> AsyncDatastoresResourceWithRawResponse:
247247
"""
248-
This property can be used as a prefix for any HTTP method call to return the
248+
This property can be used as a prefix for any HTTP method call to return
249249
the raw response object instead of the parsed content.
250250
251251
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/datastores/documents.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DocumentsResource(SyncAPIResource):
3636
@cached_property
3737
def with_raw_response(self) -> DocumentsResourceWithRawResponse:
3838
"""
39-
This property can be used as a prefix for any HTTP method call to return the
39+
This property can be used as a prefix for any HTTP method call to return
4040
the raw response object instead of the parsed content.
4141
4242
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -268,7 +268,7 @@ class AsyncDocumentsResource(AsyncAPIResource):
268268
@cached_property
269269
def with_raw_response(self) -> AsyncDocumentsResourceWithRawResponse:
270270
"""
271-
This property can be used as a prefix for any HTTP method call to return the
271+
This property can be used as a prefix for any HTTP method call to return
272272
the raw response object instead of the parsed content.
273273
274274
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

src/contextual/resources/lmunit.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class LMUnitResource(SyncAPIResource):
2828
@cached_property
2929
def with_raw_response(self) -> LMUnitResourceWithRawResponse:
3030
"""
31-
This property can be used as a prefix for any HTTP method call to return the
31+
This property can be used as a prefix for any HTTP method call to return
3232
the raw response object instead of the parsed content.
3333
3434
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers
@@ -105,7 +105,7 @@ class AsyncLMUnitResource(AsyncAPIResource):
105105
@cached_property
106106
def with_raw_response(self) -> AsyncLMUnitResourceWithRawResponse:
107107
"""
108-
This property can be used as a prefix for any HTTP method call to return the
108+
This property can be used as a prefix for any HTTP method call to return
109109
the raw response object instead of the parsed content.
110110
111111
For more information, see https://github.com/ContextualAI/contextual-client-python#accessing-raw-response-data-eg-headers

0 commit comments

Comments
 (0)