anthropic 0.68.1__py3-none-any.whl → 0.68.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anthropic/_version.py +1 -1
- anthropic/resources/beta/files.py +10 -10
- anthropic/resources/beta/messages/batches.py +12 -12
- anthropic/resources/beta/messages/messages.py +4 -4
- anthropic/resources/beta/models.py +4 -4
- anthropic/resources/completions.py +2 -2
- anthropic/resources/models.py +4 -4
- {anthropic-0.68.1.dist-info → anthropic-0.68.2.dist-info}/METADATA +1 -1
- {anthropic-0.68.1.dist-info → anthropic-0.68.2.dist-info}/RECORD +11 -11
- {anthropic-0.68.1.dist-info → anthropic-0.68.2.dist-info}/WHEEL +0 -0
- {anthropic-0.68.1.dist-info → anthropic-0.68.2.dist-info}/licenses/LICENSE +0 -0
anthropic/_version.py
CHANGED
|
@@ -98,7 +98,7 @@ class Files(SyncAPIResource):
|
|
|
98
98
|
{
|
|
99
99
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
100
100
|
if is_given(betas)
|
|
101
|
-
else
|
|
101
|
+
else not_given
|
|
102
102
|
}
|
|
103
103
|
),
|
|
104
104
|
**(extra_headers or {}),
|
|
@@ -159,7 +159,7 @@ class Files(SyncAPIResource):
|
|
|
159
159
|
{
|
|
160
160
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
161
161
|
if is_given(betas)
|
|
162
|
-
else
|
|
162
|
+
else not_given
|
|
163
163
|
}
|
|
164
164
|
),
|
|
165
165
|
**(extra_headers or {}),
|
|
@@ -209,7 +209,7 @@ class Files(SyncAPIResource):
|
|
|
209
209
|
{
|
|
210
210
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
211
211
|
if is_given(betas)
|
|
212
|
-
else
|
|
212
|
+
else not_given
|
|
213
213
|
}
|
|
214
214
|
),
|
|
215
215
|
**(extra_headers or {}),
|
|
@@ -258,7 +258,7 @@ class Files(SyncAPIResource):
|
|
|
258
258
|
{
|
|
259
259
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
260
260
|
if is_given(betas)
|
|
261
|
-
else
|
|
261
|
+
else not_given
|
|
262
262
|
}
|
|
263
263
|
),
|
|
264
264
|
**(extra_headers or {}),
|
|
@@ -305,7 +305,7 @@ class Files(SyncAPIResource):
|
|
|
305
305
|
{
|
|
306
306
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
307
307
|
if is_given(betas)
|
|
308
|
-
else
|
|
308
|
+
else not_given
|
|
309
309
|
}
|
|
310
310
|
),
|
|
311
311
|
**(extra_headers or {}),
|
|
@@ -392,7 +392,7 @@ class AsyncFiles(AsyncAPIResource):
|
|
|
392
392
|
{
|
|
393
393
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
394
394
|
if is_given(betas)
|
|
395
|
-
else
|
|
395
|
+
else not_given
|
|
396
396
|
}
|
|
397
397
|
),
|
|
398
398
|
**(extra_headers or {}),
|
|
@@ -453,7 +453,7 @@ class AsyncFiles(AsyncAPIResource):
|
|
|
453
453
|
{
|
|
454
454
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
455
455
|
if is_given(betas)
|
|
456
|
-
else
|
|
456
|
+
else not_given
|
|
457
457
|
}
|
|
458
458
|
),
|
|
459
459
|
**(extra_headers or {}),
|
|
@@ -503,7 +503,7 @@ class AsyncFiles(AsyncAPIResource):
|
|
|
503
503
|
{
|
|
504
504
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
505
505
|
if is_given(betas)
|
|
506
|
-
else
|
|
506
|
+
else not_given
|
|
507
507
|
}
|
|
508
508
|
),
|
|
509
509
|
**(extra_headers or {}),
|
|
@@ -552,7 +552,7 @@ class AsyncFiles(AsyncAPIResource):
|
|
|
552
552
|
{
|
|
553
553
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
554
554
|
if is_given(betas)
|
|
555
|
-
else
|
|
555
|
+
else not_given
|
|
556
556
|
}
|
|
557
557
|
),
|
|
558
558
|
**(extra_headers or {}),
|
|
@@ -599,7 +599,7 @@ class AsyncFiles(AsyncAPIResource):
|
|
|
599
599
|
{
|
|
600
600
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["files-api-2025-04-14"]))
|
|
601
601
|
if is_given(betas)
|
|
602
|
-
else
|
|
602
|
+
else not_given
|
|
603
603
|
}
|
|
604
604
|
),
|
|
605
605
|
**(extra_headers or {}),
|
|
@@ -87,7 +87,7 @@ class Batches(SyncAPIResource):
|
|
|
87
87
|
{
|
|
88
88
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
89
89
|
if is_given(betas)
|
|
90
|
-
else
|
|
90
|
+
else not_given
|
|
91
91
|
}
|
|
92
92
|
),
|
|
93
93
|
**(extra_headers or {}),
|
|
@@ -143,7 +143,7 @@ class Batches(SyncAPIResource):
|
|
|
143
143
|
{
|
|
144
144
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
145
145
|
if is_given(betas)
|
|
146
|
-
else
|
|
146
|
+
else not_given
|
|
147
147
|
}
|
|
148
148
|
),
|
|
149
149
|
**(extra_headers or {}),
|
|
@@ -205,7 +205,7 @@ class Batches(SyncAPIResource):
|
|
|
205
205
|
{
|
|
206
206
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
207
207
|
if is_given(betas)
|
|
208
|
-
else
|
|
208
|
+
else not_given
|
|
209
209
|
}
|
|
210
210
|
),
|
|
211
211
|
**(extra_headers or {}),
|
|
@@ -272,7 +272,7 @@ class Batches(SyncAPIResource):
|
|
|
272
272
|
{
|
|
273
273
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
274
274
|
if is_given(betas)
|
|
275
|
-
else
|
|
275
|
+
else not_given
|
|
276
276
|
}
|
|
277
277
|
),
|
|
278
278
|
**(extra_headers or {}),
|
|
@@ -333,7 +333,7 @@ class Batches(SyncAPIResource):
|
|
|
333
333
|
{
|
|
334
334
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
335
335
|
if is_given(betas)
|
|
336
|
-
else
|
|
336
|
+
else not_given
|
|
337
337
|
}
|
|
338
338
|
),
|
|
339
339
|
**(extra_headers or {}),
|
|
@@ -397,7 +397,7 @@ class Batches(SyncAPIResource):
|
|
|
397
397
|
{
|
|
398
398
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
399
399
|
if is_given(betas)
|
|
400
|
-
else
|
|
400
|
+
else not_given
|
|
401
401
|
}
|
|
402
402
|
),
|
|
403
403
|
**(extra_headers or {}),
|
|
@@ -474,7 +474,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
474
474
|
{
|
|
475
475
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
476
476
|
if is_given(betas)
|
|
477
|
-
else
|
|
477
|
+
else not_given
|
|
478
478
|
}
|
|
479
479
|
),
|
|
480
480
|
**(extra_headers or {}),
|
|
@@ -530,7 +530,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
530
530
|
{
|
|
531
531
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
532
532
|
if is_given(betas)
|
|
533
|
-
else
|
|
533
|
+
else not_given
|
|
534
534
|
}
|
|
535
535
|
),
|
|
536
536
|
**(extra_headers or {}),
|
|
@@ -592,7 +592,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
592
592
|
{
|
|
593
593
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
594
594
|
if is_given(betas)
|
|
595
|
-
else
|
|
595
|
+
else not_given
|
|
596
596
|
}
|
|
597
597
|
),
|
|
598
598
|
**(extra_headers or {}),
|
|
@@ -659,7 +659,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
659
659
|
{
|
|
660
660
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
661
661
|
if is_given(betas)
|
|
662
|
-
else
|
|
662
|
+
else not_given
|
|
663
663
|
}
|
|
664
664
|
),
|
|
665
665
|
**(extra_headers or {}),
|
|
@@ -720,7 +720,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
720
720
|
{
|
|
721
721
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
722
722
|
if is_given(betas)
|
|
723
|
-
else
|
|
723
|
+
else not_given
|
|
724
724
|
}
|
|
725
725
|
),
|
|
726
726
|
**(extra_headers or {}),
|
|
@@ -784,7 +784,7 @@ class AsyncBatches(AsyncAPIResource):
|
|
|
784
784
|
{
|
|
785
785
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["message-batches-2024-09-24"]))
|
|
786
786
|
if is_given(betas)
|
|
787
|
-
else
|
|
787
|
+
else not_given
|
|
788
788
|
}
|
|
789
789
|
),
|
|
790
790
|
**(extra_headers or {}),
|
|
@@ -957,7 +957,7 @@ class Messages(SyncAPIResource):
|
|
|
957
957
|
)
|
|
958
958
|
|
|
959
959
|
extra_headers = {
|
|
960
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
960
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
961
961
|
**(extra_headers or {}),
|
|
962
962
|
}
|
|
963
963
|
return self._post(
|
|
@@ -1454,7 +1454,7 @@ class Messages(SyncAPIResource):
|
|
|
1454
1454
|
{
|
|
1455
1455
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["token-counting-2024-11-01"]))
|
|
1456
1456
|
if is_given(betas)
|
|
1457
|
-
else
|
|
1457
|
+
else not_given
|
|
1458
1458
|
}
|
|
1459
1459
|
),
|
|
1460
1460
|
**(extra_headers or {}),
|
|
@@ -2377,7 +2377,7 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
2377
2377
|
)
|
|
2378
2378
|
|
|
2379
2379
|
extra_headers = {
|
|
2380
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
2380
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
2381
2381
|
**(extra_headers or {}),
|
|
2382
2382
|
}
|
|
2383
2383
|
return await self._post(
|
|
@@ -2872,7 +2872,7 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
2872
2872
|
{
|
|
2873
2873
|
"anthropic-beta": ",".join(chain((str(e) for e in betas), ["token-counting-2024-11-01"]))
|
|
2874
2874
|
if is_given(betas)
|
|
2875
|
-
else
|
|
2875
|
+
else not_given
|
|
2876
2876
|
}
|
|
2877
2877
|
),
|
|
2878
2878
|
**(extra_headers or {}),
|
|
@@ -75,7 +75,7 @@ class Models(SyncAPIResource):
|
|
|
75
75
|
if not model_id:
|
|
76
76
|
raise ValueError(f"Expected a non-empty value for `model_id` but received {model_id!r}")
|
|
77
77
|
extra_headers = {
|
|
78
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
78
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
79
79
|
**(extra_headers or {}),
|
|
80
80
|
}
|
|
81
81
|
return self._get(
|
|
@@ -128,7 +128,7 @@ class Models(SyncAPIResource):
|
|
|
128
128
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
129
129
|
"""
|
|
130
130
|
extra_headers = {
|
|
131
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
131
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
132
132
|
**(extra_headers or {}),
|
|
133
133
|
}
|
|
134
134
|
return self._get_api_list(
|
|
@@ -206,7 +206,7 @@ class AsyncModels(AsyncAPIResource):
|
|
|
206
206
|
if not model_id:
|
|
207
207
|
raise ValueError(f"Expected a non-empty value for `model_id` but received {model_id!r}")
|
|
208
208
|
extra_headers = {
|
|
209
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
209
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
210
210
|
**(extra_headers or {}),
|
|
211
211
|
}
|
|
212
212
|
return await self._get(
|
|
@@ -259,7 +259,7 @@ class AsyncModels(AsyncAPIResource):
|
|
|
259
259
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
260
260
|
"""
|
|
261
261
|
extra_headers = {
|
|
262
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
262
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
263
263
|
**(extra_headers or {}),
|
|
264
264
|
}
|
|
265
265
|
return self._get_api_list(
|
|
@@ -390,7 +390,7 @@ class Completions(SyncAPIResource):
|
|
|
390
390
|
if not is_given(timeout) and self._client.timeout == DEFAULT_TIMEOUT:
|
|
391
391
|
timeout = 600
|
|
392
392
|
extra_headers = {
|
|
393
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
393
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
394
394
|
**(extra_headers or {}),
|
|
395
395
|
}
|
|
396
396
|
return self._post(
|
|
@@ -785,7 +785,7 @@ class AsyncCompletions(AsyncAPIResource):
|
|
|
785
785
|
if not is_given(timeout) and self._client.timeout == DEFAULT_TIMEOUT:
|
|
786
786
|
timeout = 600
|
|
787
787
|
extra_headers = {
|
|
788
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
788
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
789
789
|
**(extra_headers or {}),
|
|
790
790
|
}
|
|
791
791
|
return await self._post(
|
anthropic/resources/models.py
CHANGED
|
@@ -75,7 +75,7 @@ class Models(SyncAPIResource):
|
|
|
75
75
|
if not model_id:
|
|
76
76
|
raise ValueError(f"Expected a non-empty value for `model_id` but received {model_id!r}")
|
|
77
77
|
extra_headers = {
|
|
78
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
78
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
79
79
|
**(extra_headers or {}),
|
|
80
80
|
}
|
|
81
81
|
return self._get(
|
|
@@ -128,7 +128,7 @@ class Models(SyncAPIResource):
|
|
|
128
128
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
129
129
|
"""
|
|
130
130
|
extra_headers = {
|
|
131
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
131
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
132
132
|
**(extra_headers or {}),
|
|
133
133
|
}
|
|
134
134
|
return self._get_api_list(
|
|
@@ -206,7 +206,7 @@ class AsyncModels(AsyncAPIResource):
|
|
|
206
206
|
if not model_id:
|
|
207
207
|
raise ValueError(f"Expected a non-empty value for `model_id` but received {model_id!r}")
|
|
208
208
|
extra_headers = {
|
|
209
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
209
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
210
210
|
**(extra_headers or {}),
|
|
211
211
|
}
|
|
212
212
|
return await self._get(
|
|
@@ -259,7 +259,7 @@ class AsyncModels(AsyncAPIResource):
|
|
|
259
259
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
260
260
|
"""
|
|
261
261
|
extra_headers = {
|
|
262
|
-
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else
|
|
262
|
+
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
|
|
263
263
|
**(extra_headers or {}),
|
|
264
264
|
}
|
|
265
265
|
return self._get_api_list(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.68.
|
|
3
|
+
Version: 0.68.2
|
|
4
4
|
Summary: The official Python library for the anthropic API
|
|
5
5
|
Project-URL: Homepage, https://github.com/anthropics/anthropic-sdk-python
|
|
6
6
|
Project-URL: Repository, https://github.com/anthropics/anthropic-sdk-python
|
|
@@ -12,7 +12,7 @@ anthropic/_resource.py,sha256=FYEOzfhB-XWTR2gyTmQuuFoecRiVXxe_SpjZlQQGytU,1080
|
|
|
12
12
|
anthropic/_response.py,sha256=1Y7-OrGn1lOwvZ_SmMlwT9Nb2i9A1RYw2Q4-F1cwPSU,30542
|
|
13
13
|
anthropic/_streaming.py,sha256=vn8K5KgfO3Bv9NE8nwHIQEjEhkQeVE6YMnGqiJlCgqE,14023
|
|
14
14
|
anthropic/_types.py,sha256=vEab5B5Hp7xQQafVrgSCHeEPUmf74jofqIPo-n7Xljk,7338
|
|
15
|
-
anthropic/_version.py,sha256=
|
|
15
|
+
anthropic/_version.py,sha256=9udM7HEFZ7srRE5B7uNnWX1bEyASWd5LWenCCrRSiPw,162
|
|
16
16
|
anthropic/pagination.py,sha256=hW6DOtNbwwQrNQ8wn4PJj7WB2y_37szSDQeUBnunQ40,2202
|
|
17
17
|
anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
anthropic/_decoders/jsonl.py,sha256=KDLw-Frjo7gRup5qDp_BWkXIZ-mFZU5vFDz0WBhEKcs,3510
|
|
@@ -55,15 +55,15 @@ anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4
|
|
|
55
55
|
anthropic/lib/vertex/_beta_messages.py,sha256=4fsV2F6TzB14DuHLo9k8i95vymcbixIPjsplqpsHfac,3399
|
|
56
56
|
anthropic/lib/vertex/_client.py,sha256=bvemByz7HdwDIHMojcvBUN7khsI32jFglgtRVDH5o04,16619
|
|
57
57
|
anthropic/resources/__init__.py,sha256=H0t_V-A_u6bIVmbAUpY9ZfgqoNIjIfyNpZz7hAiErIA,1583
|
|
58
|
-
anthropic/resources/completions.py,sha256=
|
|
59
|
-
anthropic/resources/models.py,sha256=
|
|
58
|
+
anthropic/resources/completions.py,sha256=aIwVUEjDp5ZeS96QJVNmW6dD3Jo_R5Woq_uL5PRExU8,36772
|
|
59
|
+
anthropic/resources/models.py,sha256=GgfBa0oaEdEHXC04Z9T_9u_VQPnJEaKCcmZLKWDKAPM,12402
|
|
60
60
|
anthropic/resources/beta/__init__.py,sha256=uP3kAv-GGcjuPJ6F9QM3a6g7vIiugm-iPecFTQdQUlg,1505
|
|
61
61
|
anthropic/resources/beta/beta.py,sha256=UDgDxryFjxRx_amzcRdZBo9fWunU4EHfZnKF6FTe2Bs,5123
|
|
62
|
-
anthropic/resources/beta/files.py,sha256=
|
|
63
|
-
anthropic/resources/beta/models.py,sha256=
|
|
62
|
+
anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7tMCYQ,26779
|
|
63
|
+
anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
|
|
64
64
|
anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
|
|
65
|
-
anthropic/resources/beta/messages/batches.py,sha256=
|
|
66
|
-
anthropic/resources/beta/messages/messages.py,sha256=
|
|
65
|
+
anthropic/resources/beta/messages/batches.py,sha256=O8OfPkfqotwANicpsYrOiqlA2O7G-CaeDK8BpDJRRhU,35840
|
|
66
|
+
anthropic/resources/beta/messages/messages.py,sha256=xAH4y8p0q6b7O1eNgrsjozXI1KlO1Gqz4uFCFAz7CiQ,131087
|
|
67
67
|
anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
|
|
68
68
|
anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
|
|
69
69
|
anthropic/resources/messages/messages.py,sha256=cQJUX9hEocYIFyJaGBXnFnTBsZLu0q1MnwR6FC6Qtm4,108828
|
|
@@ -365,7 +365,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
|
|
|
365
365
|
anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
|
|
366
366
|
anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
|
|
367
367
|
anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
|
|
368
|
-
anthropic-0.68.
|
|
369
|
-
anthropic-0.68.
|
|
370
|
-
anthropic-0.68.
|
|
371
|
-
anthropic-0.68.
|
|
368
|
+
anthropic-0.68.2.dist-info/METADATA,sha256=9lnZHJQ7eT1nA6BmHSobeE2mkXZGvnmqgPvIYIMvG3Q,28528
|
|
369
|
+
anthropic-0.68.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
370
|
+
anthropic-0.68.2.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
|
|
371
|
+
anthropic-0.68.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|