anthropic 0.68.0__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/__init__.py +3 -1
- anthropic/_base_client.py +9 -9
- anthropic/_client.py +8 -8
- anthropic/_qs.py +7 -7
- anthropic/_types.py +18 -11
- anthropic/_utils/_transform.py +2 -2
- anthropic/_utils/_utils.py +4 -4
- anthropic/_version.py +1 -1
- anthropic/lib/tools/_beta_runner.py +0 -1
- anthropic/resources/beta/files.py +37 -37
- anthropic/resources/beta/messages/batches.py +43 -43
- anthropic/resources/beta/messages/messages.py +271 -271
- anthropic/resources/beta/models.py +19 -19
- anthropic/resources/completions.py +63 -63
- anthropic/resources/messages/batches.py +19 -19
- anthropic/resources/messages/messages.py +125 -125
- anthropic/resources/models.py +19 -19
- {anthropic-0.68.0.dist-info → anthropic-0.68.2.dist-info}/METADATA +1 -1
- {anthropic-0.68.0.dist-info → anthropic-0.68.2.dist-info}/RECORD +21 -21
- {anthropic-0.68.0.dist-info → anthropic-0.68.2.dist-info}/WHEEL +0 -0
- {anthropic-0.68.0.dist-info → anthropic-0.68.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -23,7 +23,7 @@ from .batches import (
|
|
|
23
23
|
BatchesWithStreamingResponse,
|
|
24
24
|
AsyncBatchesWithStreamingResponse,
|
|
25
25
|
)
|
|
26
|
-
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven, SequenceNotStr
|
|
26
|
+
from ..._types import NOT_GIVEN, Body, Omit, Query, Headers, NotGiven, SequenceNotStr, omit, not_given
|
|
27
27
|
from ..._utils import is_given, required_args, maybe_transform, async_maybe_transform
|
|
28
28
|
from ..._compat import cached_property
|
|
29
29
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
@@ -93,23 +93,23 @@ class Messages(SyncAPIResource):
|
|
|
93
93
|
max_tokens: int,
|
|
94
94
|
messages: Iterable[MessageParam],
|
|
95
95
|
model: ModelParam,
|
|
96
|
-
metadata: MetadataParam |
|
|
97
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
98
|
-
stop_sequences: SequenceNotStr[str] |
|
|
99
|
-
stream: Literal[False] |
|
|
100
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
101
|
-
temperature: float |
|
|
102
|
-
thinking: ThinkingConfigParam |
|
|
103
|
-
tool_choice: ToolChoiceParam |
|
|
104
|
-
tools: Iterable[ToolUnionParam] |
|
|
105
|
-
top_k: int |
|
|
106
|
-
top_p: float |
|
|
96
|
+
metadata: MetadataParam | Omit = omit,
|
|
97
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
98
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
99
|
+
stream: Literal[False] | Omit = omit,
|
|
100
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
101
|
+
temperature: float | Omit = omit,
|
|
102
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
103
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
104
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
105
|
+
top_k: int | Omit = omit,
|
|
106
|
+
top_p: float | Omit = omit,
|
|
107
107
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
108
108
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
109
109
|
extra_headers: Headers | None = None,
|
|
110
110
|
extra_query: Query | None = None,
|
|
111
111
|
extra_body: Body | None = None,
|
|
112
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
112
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
113
113
|
) -> Message:
|
|
114
114
|
"""
|
|
115
115
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -362,22 +362,22 @@ class Messages(SyncAPIResource):
|
|
|
362
362
|
messages: Iterable[MessageParam],
|
|
363
363
|
model: ModelParam,
|
|
364
364
|
stream: Literal[True],
|
|
365
|
-
metadata: MetadataParam |
|
|
366
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
367
|
-
stop_sequences: SequenceNotStr[str] |
|
|
368
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
369
|
-
temperature: float |
|
|
370
|
-
thinking: ThinkingConfigParam |
|
|
371
|
-
tool_choice: ToolChoiceParam |
|
|
372
|
-
tools: Iterable[ToolUnionParam] |
|
|
373
|
-
top_k: int |
|
|
374
|
-
top_p: float |
|
|
365
|
+
metadata: MetadataParam | Omit = omit,
|
|
366
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
367
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
368
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
369
|
+
temperature: float | Omit = omit,
|
|
370
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
371
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
372
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
373
|
+
top_k: int | Omit = omit,
|
|
374
|
+
top_p: float | Omit = omit,
|
|
375
375
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
376
376
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
377
377
|
extra_headers: Headers | None = None,
|
|
378
378
|
extra_query: Query | None = None,
|
|
379
379
|
extra_body: Body | None = None,
|
|
380
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
380
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
381
381
|
) -> Stream[RawMessageStreamEvent]:
|
|
382
382
|
"""
|
|
383
383
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -630,22 +630,22 @@ class Messages(SyncAPIResource):
|
|
|
630
630
|
messages: Iterable[MessageParam],
|
|
631
631
|
model: ModelParam,
|
|
632
632
|
stream: bool,
|
|
633
|
-
metadata: MetadataParam |
|
|
634
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
635
|
-
stop_sequences: SequenceNotStr[str] |
|
|
636
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
637
|
-
temperature: float |
|
|
638
|
-
thinking: ThinkingConfigParam |
|
|
639
|
-
tool_choice: ToolChoiceParam |
|
|
640
|
-
tools: Iterable[ToolUnionParam] |
|
|
641
|
-
top_k: int |
|
|
642
|
-
top_p: float |
|
|
633
|
+
metadata: MetadataParam | Omit = omit,
|
|
634
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
635
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
636
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
637
|
+
temperature: float | Omit = omit,
|
|
638
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
639
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
640
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
641
|
+
top_k: int | Omit = omit,
|
|
642
|
+
top_p: float | Omit = omit,
|
|
643
643
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
644
644
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
645
645
|
extra_headers: Headers | None = None,
|
|
646
646
|
extra_query: Query | None = None,
|
|
647
647
|
extra_body: Body | None = None,
|
|
648
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
648
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
649
649
|
) -> Message | Stream[RawMessageStreamEvent]:
|
|
650
650
|
"""
|
|
651
651
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -897,23 +897,23 @@ class Messages(SyncAPIResource):
|
|
|
897
897
|
max_tokens: int,
|
|
898
898
|
messages: Iterable[MessageParam],
|
|
899
899
|
model: ModelParam,
|
|
900
|
-
metadata: MetadataParam |
|
|
901
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
902
|
-
stop_sequences: SequenceNotStr[str] |
|
|
903
|
-
stream: Literal[False] | Literal[True] |
|
|
904
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
905
|
-
temperature: float |
|
|
906
|
-
thinking: ThinkingConfigParam |
|
|
907
|
-
tool_choice: ToolChoiceParam |
|
|
908
|
-
tools: Iterable[ToolUnionParam] |
|
|
909
|
-
top_k: int |
|
|
910
|
-
top_p: float |
|
|
900
|
+
metadata: MetadataParam | Omit = omit,
|
|
901
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
902
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
903
|
+
stream: Literal[False] | Literal[True] | Omit = omit,
|
|
904
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
905
|
+
temperature: float | Omit = omit,
|
|
906
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
907
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
908
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
909
|
+
top_k: int | Omit = omit,
|
|
910
|
+
top_p: float | Omit = omit,
|
|
911
911
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
912
912
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
913
913
|
extra_headers: Headers | None = None,
|
|
914
914
|
extra_query: Query | None = None,
|
|
915
915
|
extra_body: Body | None = None,
|
|
916
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
916
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
917
917
|
) -> Message | Stream[RawMessageStreamEvent]:
|
|
918
918
|
if not stream and not is_given(timeout) and self._client.timeout == DEFAULT_TIMEOUT:
|
|
919
919
|
timeout = self._client._calculate_nonstreaming_timeout(
|
|
@@ -964,17 +964,17 @@ class Messages(SyncAPIResource):
|
|
|
964
964
|
max_tokens: int,
|
|
965
965
|
messages: Iterable[MessageParam],
|
|
966
966
|
model: ModelParam,
|
|
967
|
-
metadata: MetadataParam |
|
|
968
|
-
container: Optional[str] |
|
|
969
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
970
|
-
stop_sequences: SequenceNotStr[str] |
|
|
971
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
972
|
-
temperature: float |
|
|
973
|
-
top_k: int |
|
|
974
|
-
top_p: float |
|
|
975
|
-
thinking: ThinkingConfigParam |
|
|
976
|
-
tool_choice: ToolChoiceParam |
|
|
977
|
-
tools: Iterable[ToolUnionParam] |
|
|
967
|
+
metadata: MetadataParam | Omit = omit,
|
|
968
|
+
container: Optional[str] | Omit = omit,
|
|
969
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
970
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
971
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
972
|
+
temperature: float | Omit = omit,
|
|
973
|
+
top_k: int | Omit = omit,
|
|
974
|
+
top_p: float | Omit = omit,
|
|
975
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
976
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
977
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
978
978
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
979
979
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
980
980
|
extra_headers: Headers | None = None,
|
|
@@ -1031,16 +1031,16 @@ class Messages(SyncAPIResource):
|
|
|
1031
1031
|
*,
|
|
1032
1032
|
messages: Iterable[MessageParam],
|
|
1033
1033
|
model: ModelParam,
|
|
1034
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
1035
|
-
thinking: ThinkingConfigParam |
|
|
1036
|
-
tool_choice: ToolChoiceParam |
|
|
1037
|
-
tools: Iterable[MessageCountTokensToolParam] |
|
|
1034
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
1035
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
1036
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
1037
|
+
tools: Iterable[MessageCountTokensToolParam] | Omit = omit,
|
|
1038
1038
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1039
1039
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1040
1040
|
extra_headers: Headers | None = None,
|
|
1041
1041
|
extra_query: Query | None = None,
|
|
1042
1042
|
extra_body: Body | None = None,
|
|
1043
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
1043
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1044
1044
|
) -> MessageTokensCount:
|
|
1045
1045
|
"""
|
|
1046
1046
|
Count the number of tokens in a Message.
|
|
@@ -1276,23 +1276,23 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
1276
1276
|
max_tokens: int,
|
|
1277
1277
|
messages: Iterable[MessageParam],
|
|
1278
1278
|
model: ModelParam,
|
|
1279
|
-
metadata: MetadataParam |
|
|
1280
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
1281
|
-
stop_sequences: SequenceNotStr[str] |
|
|
1282
|
-
stream: Literal[False] |
|
|
1283
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
1284
|
-
temperature: float |
|
|
1285
|
-
thinking: ThinkingConfigParam |
|
|
1286
|
-
tool_choice: ToolChoiceParam |
|
|
1287
|
-
tools: Iterable[ToolUnionParam] |
|
|
1288
|
-
top_k: int |
|
|
1289
|
-
top_p: float |
|
|
1279
|
+
metadata: MetadataParam | Omit = omit,
|
|
1280
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
1281
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
1282
|
+
stream: Literal[False] | Omit = omit,
|
|
1283
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
1284
|
+
temperature: float | Omit = omit,
|
|
1285
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
1286
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
1287
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
1288
|
+
top_k: int | Omit = omit,
|
|
1289
|
+
top_p: float | Omit = omit,
|
|
1290
1290
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1291
1291
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1292
1292
|
extra_headers: Headers | None = None,
|
|
1293
1293
|
extra_query: Query | None = None,
|
|
1294
1294
|
extra_body: Body | None = None,
|
|
1295
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
1295
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1296
1296
|
) -> Message:
|
|
1297
1297
|
"""
|
|
1298
1298
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -1545,22 +1545,22 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
1545
1545
|
messages: Iterable[MessageParam],
|
|
1546
1546
|
model: ModelParam,
|
|
1547
1547
|
stream: Literal[True],
|
|
1548
|
-
metadata: MetadataParam |
|
|
1549
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
1550
|
-
stop_sequences: SequenceNotStr[str] |
|
|
1551
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
1552
|
-
temperature: float |
|
|
1553
|
-
thinking: ThinkingConfigParam |
|
|
1554
|
-
tool_choice: ToolChoiceParam |
|
|
1555
|
-
tools: Iterable[ToolUnionParam] |
|
|
1556
|
-
top_k: int |
|
|
1557
|
-
top_p: float |
|
|
1548
|
+
metadata: MetadataParam | Omit = omit,
|
|
1549
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
1550
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
1551
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
1552
|
+
temperature: float | Omit = omit,
|
|
1553
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
1554
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
1555
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
1556
|
+
top_k: int | Omit = omit,
|
|
1557
|
+
top_p: float | Omit = omit,
|
|
1558
1558
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1559
1559
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1560
1560
|
extra_headers: Headers | None = None,
|
|
1561
1561
|
extra_query: Query | None = None,
|
|
1562
1562
|
extra_body: Body | None = None,
|
|
1563
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
1563
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1564
1564
|
) -> AsyncStream[RawMessageStreamEvent]:
|
|
1565
1565
|
"""
|
|
1566
1566
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -1813,22 +1813,22 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
1813
1813
|
messages: Iterable[MessageParam],
|
|
1814
1814
|
model: ModelParam,
|
|
1815
1815
|
stream: bool,
|
|
1816
|
-
metadata: MetadataParam |
|
|
1817
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
1818
|
-
stop_sequences: SequenceNotStr[str] |
|
|
1819
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
1820
|
-
temperature: float |
|
|
1821
|
-
thinking: ThinkingConfigParam |
|
|
1822
|
-
tool_choice: ToolChoiceParam |
|
|
1823
|
-
tools: Iterable[ToolUnionParam] |
|
|
1824
|
-
top_k: int |
|
|
1825
|
-
top_p: float |
|
|
1816
|
+
metadata: MetadataParam | Omit = omit,
|
|
1817
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
1818
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
1819
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
1820
|
+
temperature: float | Omit = omit,
|
|
1821
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
1822
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
1823
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
1824
|
+
top_k: int | Omit = omit,
|
|
1825
|
+
top_p: float | Omit = omit,
|
|
1826
1826
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1827
1827
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1828
1828
|
extra_headers: Headers | None = None,
|
|
1829
1829
|
extra_query: Query | None = None,
|
|
1830
1830
|
extra_body: Body | None = None,
|
|
1831
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
1831
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1832
1832
|
) -> Message | AsyncStream[RawMessageStreamEvent]:
|
|
1833
1833
|
"""
|
|
1834
1834
|
Send a structured list of input messages with text and/or image content, and the
|
|
@@ -2080,23 +2080,23 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
2080
2080
|
max_tokens: int,
|
|
2081
2081
|
messages: Iterable[MessageParam],
|
|
2082
2082
|
model: ModelParam,
|
|
2083
|
-
metadata: MetadataParam |
|
|
2084
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
2085
|
-
stop_sequences: SequenceNotStr[str] |
|
|
2086
|
-
stream: Literal[False] | Literal[True] |
|
|
2087
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
2088
|
-
temperature: float |
|
|
2089
|
-
thinking: ThinkingConfigParam |
|
|
2090
|
-
tool_choice: ToolChoiceParam |
|
|
2091
|
-
tools: Iterable[ToolUnionParam] |
|
|
2092
|
-
top_k: int |
|
|
2093
|
-
top_p: float |
|
|
2083
|
+
metadata: MetadataParam | Omit = omit,
|
|
2084
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
2085
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
2086
|
+
stream: Literal[False] | Literal[True] | Omit = omit,
|
|
2087
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
2088
|
+
temperature: float | Omit = omit,
|
|
2089
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
2090
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
2091
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
2092
|
+
top_k: int | Omit = omit,
|
|
2093
|
+
top_p: float | Omit = omit,
|
|
2094
2094
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
2095
2095
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
2096
2096
|
extra_headers: Headers | None = None,
|
|
2097
2097
|
extra_query: Query | None = None,
|
|
2098
2098
|
extra_body: Body | None = None,
|
|
2099
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
2099
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
2100
2100
|
) -> Message | AsyncStream[RawMessageStreamEvent]:
|
|
2101
2101
|
if not stream and not is_given(timeout) and self._client.timeout == DEFAULT_TIMEOUT:
|
|
2102
2102
|
timeout = self._client._calculate_nonstreaming_timeout(
|
|
@@ -2147,17 +2147,17 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
2147
2147
|
max_tokens: int,
|
|
2148
2148
|
messages: Iterable[MessageParam],
|
|
2149
2149
|
model: ModelParam,
|
|
2150
|
-
metadata: MetadataParam |
|
|
2151
|
-
container: Optional[str] |
|
|
2152
|
-
service_tier: Literal["auto", "standard_only"] |
|
|
2153
|
-
stop_sequences: SequenceNotStr[str] |
|
|
2154
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
2155
|
-
temperature: float |
|
|
2156
|
-
top_k: int |
|
|
2157
|
-
top_p: float |
|
|
2158
|
-
thinking: ThinkingConfigParam |
|
|
2159
|
-
tool_choice: ToolChoiceParam |
|
|
2160
|
-
tools: Iterable[ToolUnionParam] |
|
|
2150
|
+
metadata: MetadataParam | Omit = omit,
|
|
2151
|
+
container: Optional[str] | Omit = omit,
|
|
2152
|
+
service_tier: Literal["auto", "standard_only"] | Omit = omit,
|
|
2153
|
+
stop_sequences: SequenceNotStr[str] | Omit = omit,
|
|
2154
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
2155
|
+
temperature: float | Omit = omit,
|
|
2156
|
+
top_k: int | Omit = omit,
|
|
2157
|
+
top_p: float | Omit = omit,
|
|
2158
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
2159
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
2160
|
+
tools: Iterable[ToolUnionParam] | Omit = omit,
|
|
2161
2161
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
2162
2162
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
2163
2163
|
extra_headers: Headers | None = None,
|
|
@@ -2213,16 +2213,16 @@ class AsyncMessages(AsyncAPIResource):
|
|
|
2213
2213
|
*,
|
|
2214
2214
|
messages: Iterable[MessageParam],
|
|
2215
2215
|
model: ModelParam,
|
|
2216
|
-
system: Union[str, Iterable[TextBlockParam]] |
|
|
2217
|
-
thinking: ThinkingConfigParam |
|
|
2218
|
-
tool_choice: ToolChoiceParam |
|
|
2219
|
-
tools: Iterable[MessageCountTokensToolParam] |
|
|
2216
|
+
system: Union[str, Iterable[TextBlockParam]] | Omit = omit,
|
|
2217
|
+
thinking: ThinkingConfigParam | Omit = omit,
|
|
2218
|
+
tool_choice: ToolChoiceParam | Omit = omit,
|
|
2219
|
+
tools: Iterable[MessageCountTokensToolParam] | Omit = omit,
|
|
2220
2220
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
2221
2221
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
2222
2222
|
extra_headers: Headers | None = None,
|
|
2223
2223
|
extra_query: Query | None = None,
|
|
2224
2224
|
extra_body: Body | None = None,
|
|
2225
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
2225
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
2226
2226
|
) -> MessageTokensCount:
|
|
2227
2227
|
"""
|
|
2228
2228
|
Count the number of tokens in a Message.
|
anthropic/resources/models.py
CHANGED
|
@@ -8,7 +8,7 @@ import httpx
|
|
|
8
8
|
|
|
9
9
|
from .. import _legacy_response
|
|
10
10
|
from ..types import model_list_params
|
|
11
|
-
from .._types import
|
|
11
|
+
from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
12
12
|
from .._utils import is_given, maybe_transform, strip_not_given
|
|
13
13
|
from .._compat import cached_property
|
|
14
14
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
@@ -45,13 +45,13 @@ class Models(SyncAPIResource):
|
|
|
45
45
|
self,
|
|
46
46
|
model_id: str,
|
|
47
47
|
*,
|
|
48
|
-
betas: List[AnthropicBetaParam] |
|
|
48
|
+
betas: List[AnthropicBetaParam] | Omit = omit,
|
|
49
49
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
50
50
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
51
51
|
extra_headers: Headers | None = None,
|
|
52
52
|
extra_query: Query | None = None,
|
|
53
53
|
extra_body: Body | None = None,
|
|
54
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
54
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
55
55
|
) -> ModelInfo:
|
|
56
56
|
"""
|
|
57
57
|
Get a specific model.
|
|
@@ -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(
|
|
@@ -89,16 +89,16 @@ class Models(SyncAPIResource):
|
|
|
89
89
|
def list(
|
|
90
90
|
self,
|
|
91
91
|
*,
|
|
92
|
-
after_id: str |
|
|
93
|
-
before_id: str |
|
|
94
|
-
limit: int |
|
|
95
|
-
betas: List[AnthropicBetaParam] |
|
|
92
|
+
after_id: str | Omit = omit,
|
|
93
|
+
before_id: str | Omit = omit,
|
|
94
|
+
limit: int | Omit = omit,
|
|
95
|
+
betas: List[AnthropicBetaParam] | Omit = omit,
|
|
96
96
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
97
97
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
98
98
|
extra_headers: Headers | None = None,
|
|
99
99
|
extra_query: Query | None = None,
|
|
100
100
|
extra_body: Body | None = None,
|
|
101
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
101
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
102
102
|
) -> SyncPage[ModelInfo]:
|
|
103
103
|
"""
|
|
104
104
|
List available models.
|
|
@@ -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(
|
|
@@ -176,13 +176,13 @@ class AsyncModels(AsyncAPIResource):
|
|
|
176
176
|
self,
|
|
177
177
|
model_id: str,
|
|
178
178
|
*,
|
|
179
|
-
betas: List[AnthropicBetaParam] |
|
|
179
|
+
betas: List[AnthropicBetaParam] | Omit = omit,
|
|
180
180
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
181
181
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
182
182
|
extra_headers: Headers | None = None,
|
|
183
183
|
extra_query: Query | None = None,
|
|
184
184
|
extra_body: Body | None = None,
|
|
185
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
185
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
186
186
|
) -> ModelInfo:
|
|
187
187
|
"""
|
|
188
188
|
Get a specific model.
|
|
@@ -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(
|
|
@@ -220,16 +220,16 @@ class AsyncModels(AsyncAPIResource):
|
|
|
220
220
|
def list(
|
|
221
221
|
self,
|
|
222
222
|
*,
|
|
223
|
-
after_id: str |
|
|
224
|
-
before_id: str |
|
|
225
|
-
limit: int |
|
|
226
|
-
betas: List[AnthropicBetaParam] |
|
|
223
|
+
after_id: str | Omit = omit,
|
|
224
|
+
before_id: str | Omit = omit,
|
|
225
|
+
limit: int | Omit = omit,
|
|
226
|
+
betas: List[AnthropicBetaParam] | Omit = omit,
|
|
227
227
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
228
228
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
229
229
|
extra_headers: Headers | None = None,
|
|
230
230
|
extra_query: Query | None = None,
|
|
231
231
|
extra_body: Body | None = None,
|
|
232
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
232
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
233
233
|
) -> AsyncPaginator[ModelInfo, AsyncPage[ModelInfo]]:
|
|
234
234
|
"""
|
|
235
235
|
List available models.
|
|
@@ -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
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
anthropic/__init__.py,sha256=
|
|
2
|
-
anthropic/_base_client.py,sha256=
|
|
3
|
-
anthropic/_client.py,sha256=
|
|
1
|
+
anthropic/__init__.py,sha256=sPNLvrXJGDKWSF87xPj6CidUbcMD4sAVIzip4BeEP7g,2981
|
|
2
|
+
anthropic/_base_client.py,sha256=wzBPPq1xjyx7okxIAAaNuKmrP-1w6v20girS-VrgT3U,72849
|
|
3
|
+
anthropic/_client.py,sha256=M90bE_o_HRuBNrbA-D-grLZua841_5NTkzeUQpyE75Y,22812
|
|
4
4
|
anthropic/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
anthropic/_constants.py,sha256=wADeUqY3lsseF0L6jIen-PexfQ06FOtf2dVESXDM828,885
|
|
6
6
|
anthropic/_exceptions.py,sha256=bkSqVWxtRdRb31H7MIvtxfh5mo_Xf7Ib3nPTOmAOmGs,4073
|
|
7
7
|
anthropic/_files.py,sha256=_Ux6v6nAsxK4e_4efdt1DiIOZ0hGmlR2ZKKcVfJIfGU,3623
|
|
8
8
|
anthropic/_legacy_response.py,sha256=QsroQ_9LHI8tSoPEvbIXXB44SvLJXaXQX7khjZpnqfE,17235
|
|
9
9
|
anthropic/_models.py,sha256=wUXeougIoFGSKQr_XIcmamSHeupO6R7ZaQnFZC-hEl8,31957
|
|
10
|
-
anthropic/_qs.py,sha256=
|
|
10
|
+
anthropic/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
11
11
|
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
|
-
anthropic/_types.py,sha256=
|
|
15
|
-
anthropic/_version.py,sha256=
|
|
14
|
+
anthropic/_types.py,sha256=vEab5B5Hp7xQQafVrgSCHeEPUmf74jofqIPo-n7Xljk,7338
|
|
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
|
|
@@ -26,9 +26,9 @@ anthropic/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmE
|
|
|
26
26
|
anthropic/_utils/_resources_proxy.py,sha256=Y6WaTfDzBlt-GXVlTQLlIjpkSZZ8fRlMzXuRBh64CrA,604
|
|
27
27
|
anthropic/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
28
28
|
anthropic/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
29
|
-
anthropic/_utils/_transform.py,sha256=
|
|
29
|
+
anthropic/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
30
30
|
anthropic/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
31
|
-
anthropic/_utils/_utils.py,sha256=
|
|
31
|
+
anthropic/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
32
32
|
anthropic/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
33
33
|
anthropic/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
anthropic/lib/_extras/__init__.py,sha256=a9HX69-V9nROM4Em9a4y-xZTgiLE2jdlCyC6ZKtxfyY,53
|
|
@@ -48,25 +48,25 @@ anthropic/lib/streaming/_messages.py,sha256=OSV9sjb8MLThSywEFXQV9OchcNXAE2KxDacV
|
|
|
48
48
|
anthropic/lib/streaming/_types.py,sha256=CrR4948IWgUF7L9O0ase2QwbpiQ1JeiYXrRyVi74-Bw,2086
|
|
49
49
|
anthropic/lib/tools/__init__.py,sha256=ui3gBw2-vQsl_4pKjf3O5kfUYpGATjQ6H4MPLopy0h4,525
|
|
50
50
|
anthropic/lib/tools/_beta_functions.py,sha256=eje6jXzDZa0azRevFF6TP_YQBo7FX3DvY4wRT5nUv7c,9738
|
|
51
|
-
anthropic/lib/tools/_beta_runner.py,sha256=
|
|
51
|
+
anthropic/lib/tools/_beta_runner.py,sha256=rwmV1mU2I1riTexNTZj0GWR13Sam7n486W1K1fu4SIU,15469
|
|
52
52
|
anthropic/lib/vertex/__init__.py,sha256=A8vuK1qVPtmKr1_LQgPuDRVA6I4xm_ye2aPdAa4yGsI,102
|
|
53
53
|
anthropic/lib/vertex/_auth.py,sha256=Kyt_hbUc-DPlkvds4__OLR8FLPpoDas6bXhZTECxO3Y,1644
|
|
54
54
|
anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4,3323
|
|
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
|
-
anthropic/resources/messages/batches.py,sha256=
|
|
69
|
-
anthropic/resources/messages/messages.py,sha256=
|
|
68
|
+
anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
|
|
69
|
+
anthropic/resources/messages/messages.py,sha256=cQJUX9hEocYIFyJaGBXnFnTBsZLu0q1MnwR6FC6Qtm4,108828
|
|
70
70
|
anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
|
|
71
71
|
anthropic/types/anthropic_beta_param.py,sha256=UyV6amEHP5EhVAxA_viLrdpX0YclbZtakiak-7XSayc,848
|
|
72
72
|
anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
|
|
@@ -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
|