anthropic 0.61.0__py3-none-any.whl → 0.63.0__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 CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "anthropic"
4
- __version__ = "0.61.0" # x-release-please-version
4
+ __version__ = "0.63.0" # x-release-please-version
@@ -90,6 +90,7 @@ from .base64_image_source_param import Base64ImageSourceParam as Base64ImageSour
90
90
  from .beta_authentication_error import BetaAuthenticationError as BetaAuthenticationError
91
91
  from .content_block_delta_event import ContentBlockDeltaEvent as ContentBlockDeltaEvent
92
92
  from .content_block_start_event import ContentBlockStartEvent as ContentBlockStartEvent
93
+ from .search_result_block_param import SearchResultBlockParam as SearchResultBlockParam
93
94
  from .beta_gateway_timeout_error import BetaGatewayTimeoutError as BetaGatewayTimeoutError
94
95
  from .beta_invalid_request_error import BetaInvalidRequestError as BetaInvalidRequestError
95
96
  from .content_block_source_param import ContentBlockSourceParam as ContentBlockSourceParam
@@ -113,6 +114,7 @@ from .message_count_tokens_tool_param import MessageCountTokensToolParam as Mess
113
114
  from .tool_text_editor_20250124_param import ToolTextEditor20250124Param as ToolTextEditor20250124Param
114
115
  from .tool_text_editor_20250429_param import ToolTextEditor20250429Param as ToolTextEditor20250429Param
115
116
  from .tool_text_editor_20250728_param import ToolTextEditor20250728Param as ToolTextEditor20250728Param
117
+ from .citations_search_result_location import CitationsSearchResultLocation as CitationsSearchResultLocation
116
118
  from .content_block_source_content_param import ContentBlockSourceContentParam as ContentBlockSourceContentParam
117
119
  from .web_search_tool_result_block_param import WebSearchToolResultBlockParam as WebSearchToolResultBlockParam
118
120
  from .web_search_tool_request_error_param import WebSearchToolRequestErrorParam as WebSearchToolRequestErrorParam
@@ -121,6 +123,9 @@ from .web_search_tool_result_block_content import WebSearchToolResultBlockConten
121
123
  from .citation_content_block_location_param import (
122
124
  CitationContentBlockLocationParam as CitationContentBlockLocationParam,
123
125
  )
126
+ from .citation_search_result_location_param import (
127
+ CitationSearchResultLocationParam as CitationSearchResultLocationParam,
128
+ )
124
129
  from .citation_web_search_result_location_param import (
125
130
  CitationWebSearchResultLocationParam as CitationWebSearchResultLocationParam,
126
131
  )
@@ -24,5 +24,6 @@ AnthropicBetaParam: TypeAlias = Union[
24
24
  "interleaved-thinking-2025-05-14",
25
25
  "code-execution-2025-05-22",
26
26
  "extended-cache-ttl-2025-04-11",
27
+ "context-1m-2025-08-07",
27
28
  ],
28
29
  ]
@@ -0,0 +1,24 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Optional
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ __all__ = ["CitationSearchResultLocationParam"]
9
+
10
+
11
+ class CitationSearchResultLocationParam(TypedDict, total=False):
12
+ cited_text: Required[str]
13
+
14
+ end_block_index: Required[int]
15
+
16
+ search_result_index: Required[int]
17
+
18
+ source: Required[str]
19
+
20
+ start_block_index: Required[int]
21
+
22
+ title: Required[Optional[str]]
23
+
24
+ type: Required[Literal["search_result_location"]]
@@ -8,12 +8,19 @@ from .._models import BaseModel
8
8
  from .citation_char_location import CitationCharLocation
9
9
  from .citation_page_location import CitationPageLocation
10
10
  from .citation_content_block_location import CitationContentBlockLocation
11
+ from .citations_search_result_location import CitationsSearchResultLocation
11
12
  from .citations_web_search_result_location import CitationsWebSearchResultLocation
12
13
 
13
14
  __all__ = ["CitationsDelta", "Citation"]
14
15
 
15
16
  Citation: TypeAlias = Annotated[
16
- Union[CitationCharLocation, CitationPageLocation, CitationContentBlockLocation, CitationsWebSearchResultLocation],
17
+ Union[
18
+ CitationCharLocation,
19
+ CitationPageLocation,
20
+ CitationContentBlockLocation,
21
+ CitationsWebSearchResultLocation,
22
+ CitationsSearchResultLocation,
23
+ ],
17
24
  PropertyInfo(discriminator="type"),
18
25
  ]
19
26
 
@@ -0,0 +1,24 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from typing_extensions import Literal
5
+
6
+ from .._models import BaseModel
7
+
8
+ __all__ = ["CitationsSearchResultLocation"]
9
+
10
+
11
+ class CitationsSearchResultLocation(BaseModel):
12
+ cited_text: str
13
+
14
+ end_block_index: int
15
+
16
+ search_result_index: int
17
+
18
+ source: str
19
+
20
+ start_block_index: int
21
+
22
+ title: Optional[str] = None
23
+
24
+ type: Literal["search_result_location"]
@@ -11,6 +11,7 @@ from .document_block_param import DocumentBlockParam
11
11
  from .thinking_block_param import ThinkingBlockParam
12
12
  from .tool_use_block_param import ToolUseBlockParam
13
13
  from .tool_result_block_param import ToolResultBlockParam
14
+ from .search_result_block_param import SearchResultBlockParam
14
15
  from .server_tool_use_block_param import ServerToolUseBlockParam
15
16
  from .redacted_thinking_block_param import RedactedThinkingBlockParam
16
17
  from .web_search_tool_result_block_param import WebSearchToolResultBlockParam
@@ -21,6 +22,7 @@ ContentBlockParam: TypeAlias = Union[
21
22
  TextBlockParam,
22
23
  ImageBlockParam,
23
24
  DocumentBlockParam,
25
+ SearchResultBlockParam,
24
26
  ThinkingBlockParam,
25
27
  RedactedThinkingBlockParam,
26
28
  ToolUseBlockParam,
@@ -12,6 +12,7 @@ from .document_block_param import DocumentBlockParam
12
12
  from .thinking_block_param import ThinkingBlockParam
13
13
  from .tool_use_block_param import ToolUseBlockParam
14
14
  from .tool_result_block_param import ToolResultBlockParam
15
+ from .search_result_block_param import SearchResultBlockParam
15
16
  from .server_tool_use_block_param import ServerToolUseBlockParam
16
17
  from .redacted_thinking_block_param import RedactedThinkingBlockParam
17
18
  from .web_search_tool_result_block_param import WebSearchToolResultBlockParam
@@ -28,6 +29,7 @@ class MessageParam(TypedDict, total=False):
28
29
  TextBlockParam,
29
30
  ImageBlockParam,
30
31
  DocumentBlockParam,
32
+ SearchResultBlockParam,
31
33
  ThinkingBlockParam,
32
34
  RedactedThinkingBlockParam,
33
35
  ToolUseBlockParam,
@@ -0,0 +1,27 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Iterable, Optional
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ from .text_block_param import TextBlockParam
9
+ from .citations_config_param import CitationsConfigParam
10
+ from .cache_control_ephemeral_param import CacheControlEphemeralParam
11
+
12
+ __all__ = ["SearchResultBlockParam"]
13
+
14
+
15
+ class SearchResultBlockParam(TypedDict, total=False):
16
+ content: Required[Iterable[TextBlockParam]]
17
+
18
+ source: Required[str]
19
+
20
+ title: Required[str]
21
+
22
+ type: Required[Literal["search_result"]]
23
+
24
+ cache_control: Optional[CacheControlEphemeralParam]
25
+ """Create a cache control breakpoint at this content block."""
26
+
27
+ citations: CitationsConfigParam
@@ -7,11 +7,18 @@ from .._utils import PropertyInfo
7
7
  from .citation_char_location import CitationCharLocation
8
8
  from .citation_page_location import CitationPageLocation
9
9
  from .citation_content_block_location import CitationContentBlockLocation
10
+ from .citations_search_result_location import CitationsSearchResultLocation
10
11
  from .citations_web_search_result_location import CitationsWebSearchResultLocation
11
12
 
12
13
  __all__ = ["TextCitation"]
13
14
 
14
15
  TextCitation: TypeAlias = Annotated[
15
- Union[CitationCharLocation, CitationPageLocation, CitationContentBlockLocation, CitationsWebSearchResultLocation],
16
+ Union[
17
+ CitationCharLocation,
18
+ CitationPageLocation,
19
+ CitationContentBlockLocation,
20
+ CitationsWebSearchResultLocation,
21
+ CitationsSearchResultLocation,
22
+ ],
16
23
  PropertyInfo(discriminator="type"),
17
24
  ]
@@ -8,6 +8,7 @@ from typing_extensions import TypeAlias
8
8
  from .citation_char_location_param import CitationCharLocationParam
9
9
  from .citation_page_location_param import CitationPageLocationParam
10
10
  from .citation_content_block_location_param import CitationContentBlockLocationParam
11
+ from .citation_search_result_location_param import CitationSearchResultLocationParam
11
12
  from .citation_web_search_result_location_param import CitationWebSearchResultLocationParam
12
13
 
13
14
  __all__ = ["TextCitationParam"]
@@ -17,4 +18,5 @@ TextCitationParam: TypeAlias = Union[
17
18
  CitationPageLocationParam,
18
19
  CitationContentBlockLocationParam,
19
20
  CitationWebSearchResultLocationParam,
21
+ CitationSearchResultLocationParam,
20
22
  ]
@@ -7,11 +7,12 @@ from typing_extensions import Literal, Required, TypeAlias, TypedDict
7
7
 
8
8
  from .text_block_param import TextBlockParam
9
9
  from .image_block_param import ImageBlockParam
10
+ from .search_result_block_param import SearchResultBlockParam
10
11
  from .cache_control_ephemeral_param import CacheControlEphemeralParam
11
12
 
12
13
  __all__ = ["ToolResultBlockParam", "Content"]
13
14
 
14
- Content: TypeAlias = Union[TextBlockParam, ImageBlockParam]
15
+ Content: TypeAlias = Union[TextBlockParam, ImageBlockParam, SearchResultBlockParam]
15
16
 
16
17
 
17
18
  class ToolResultBlockParam(TypedDict, total=False):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.61.0
3
+ Version: 0.63.0
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=WeAcP68yMpfs3hNEltM_k2nYMiG4xda4cFdf5kHbjP8,6299
15
- anthropic/_version.py,sha256=rzup-OHfbD2eLtUhg6G9S_vHQ8xxpcuodmqJIa76hiw,162
15
+ anthropic/_version.py,sha256=AA2DKv87__ZSNGCHpn_sg6tWbLXFvFAGJc9Eb7dyFwA,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
@@ -62,8 +62,8 @@ anthropic/resources/beta/messages/messages.py,sha256=Dd7qofd2C-DJBqqySwIbtrjjdna
62
62
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
63
63
  anthropic/resources/messages/batches.py,sha256=w_bNgg_NV4rFQkDeixJtRokimPIT3OVpimr8D8_7v5Y,28590
64
64
  anthropic/resources/messages/messages.py,sha256=ea_T-P7m6XWQ3mwyujhsxT7xvcDwb0ALbWFM2TVNzWs,115893
65
- anthropic/types/__init__.py,sha256=yg2f5AS6fAwmXDQWOYw8gmp4-Xi6dN7A25wbRdcRTxc,9071
66
- anthropic/types/anthropic_beta_param.py,sha256=i4XrAH4oVFJ4boTJp-Ko972wEvx0hTds4YJL28JnoW0,815
65
+ anthropic/types/__init__.py,sha256=d1cg-Au73-TCjCtCXABVIsh_jEF44HxGp98siIx-css,9399
66
+ anthropic/types/anthropic_beta_param.py,sha256=UyV6amEHP5EhVAxA_viLrdpX0YclbZtakiak-7XSayc,848
67
67
  anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
68
68
  anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
69
69
  anthropic/types/beta_api_error.py,sha256=rr_VBxFp9VqNmVjTUokYzpkYRYvO9MVh_t406BvGi38,268
@@ -84,15 +84,17 @@ anthropic/types/citation_content_block_location.py,sha256=wF2H_nZcZ7XVlc2n6ZzTsd
84
84
  anthropic/types/citation_content_block_location_param.py,sha256=OWwJS3K9rPjwVXX3zic9O0SfIpGbi6268oGiZmcghrE,565
85
85
  anthropic/types/citation_page_location.py,sha256=ZrdI5X-bkcHUfTVkugX1vaLsGC_N9H6UQNTkUcii7Io,475
86
86
  anthropic/types/citation_page_location_param.py,sha256=HaGbc5OyeI0qNk9PYzwx_xGZwuoQpJ_NvwbkRXBGcTo,540
87
+ anthropic/types/citation_search_result_location_param.py,sha256=VwuJbt_Q-O5igKvt9VdldzD5-fvGJwTIDjHt8HNsNEQ,588
87
88
  anthropic/types/citation_web_search_result_location_param.py,sha256=L_49nL2-OQ7jv0ihuaZlGpTwlsHl7JFKQj2XyVvun0s,517
88
89
  anthropic/types/citations_config_param.py,sha256=QaqfWOS568Iv0LOlwnswhCUXF8JtS-AjGsz_fGJKmpI,271
89
- anthropic/types/citations_delta.py,sha256=VoEBpHCnMuJ5KaWLJqb98dUSBhfMvbpPw6UJ_O6vTzw,843
90
+ anthropic/types/citations_delta.py,sha256=1lnPGh4nfooE90rqBRNonwGvHPuyzF7-Rs76LHeHbgQ,997
91
+ anthropic/types/citations_search_result_location.py,sha256=9UN4QljowQ9p3NVWHiGn_vuh1BTrqQhNU3ijiZ9Atms,480
90
92
  anthropic/types/citations_web_search_result_location.py,sha256=rxbcJmhqPa394V5253XDKWtphNklZq44RsKhs8_d_xg,429
91
93
  anthropic/types/completion.py,sha256=rwyZeILWQMjzTaYA7wNOJFYQrTobiGt5gsxIpD7ejdI,1151
92
94
  anthropic/types/completion_create_params.py,sha256=g7Ul00vlxm8lHUKc3bB45dEfjGiiEAGuFgahS-eeUFY,4809
93
95
  anthropic/types/content_block.py,sha256=GecBwRGBTdWLlBkEox1b6ukKD0r6_4Gxbu__9m4FE-Q,723
94
96
  anthropic/types/content_block_delta_event.py,sha256=Y1wLLQioHYK25FeFYMHv0ya2MrOw26iFSksZwnK9eHs,310
95
- anthropic/types/content_block_param.py,sha256=eb1kPeY1mSxhvhA9utFdhRZAFjXMSSxSt3pNrRylO0M,1018
97
+ anthropic/types/content_block_param.py,sha256=oBRgNTe1-bW6SOmpV9GJXlmBynzu77qSJQN47Y7bOUI,1108
96
98
  anthropic/types/content_block_source_content_param.py,sha256=S7jYbHw_FhL4c1pNW-NEdXpIek7tSk1V812OYpaZuUE,411
97
99
  anthropic/types/content_block_source_param.py,sha256=Qs-wmu5DTlECLIuyTi-Ih8YrMQtyu43rKAZV1WD6--8,509
98
100
  anthropic/types/content_block_start_event.py,sha256=KIKjsrqrkrOzOlZgjbWS24Ceo2_8-5yS8WtUxtDoEbw,310
@@ -106,7 +108,7 @@ anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXlt
106
108
  anthropic/types/message_create_params.py,sha256=8vIp6b6wCFiHGS0rW1Ay8RTEhtVU3IT1_zHQ7jBeIVE,11624
107
109
  anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
108
110
  anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
109
- anthropic/types/message_param.py,sha256=xNf3qvCJOFC9Yh57crf9N_EBefiTGvh79jF_NORb7Ds,1464
111
+ anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
110
112
  anthropic/types/message_start_event.py,sha256=ZTGWYmtAKcXWgYovM09IutHGiF8__Ol9x2XMkivzVaM,279
111
113
  anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9cXP-MJo68,273
112
114
  anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
@@ -127,6 +129,7 @@ anthropic/types/raw_message_stop_event.py,sha256=JyudS9wnL0c2dG913QDDuenIaRGjXEm
127
129
  anthropic/types/raw_message_stream_event.py,sha256=fazzMhSf9xLVLXHQu62f7gRHyBiWfTWkeavd0G-CcrU,912
128
130
  anthropic/types/redacted_thinking_block.py,sha256=rRoc3AUPGUaYywZ29cLkZ7oGvaAj69vlSIZipr_ZqcQ,291
129
131
  anthropic/types/redacted_thinking_block_param.py,sha256=x00GNJXOnAYLPqWMrkRDcHveOJEvrU4iAaTP1rmNqBU,358
132
+ anthropic/types/search_result_block_param.py,sha256=89JZzDqAAZcQZFu6Yy1jNqXK0Px64RGg8wyg6mN0Pfs,795
130
133
  anthropic/types/server_tool_usage.py,sha256=nccmvOnXVirtx_ORf4xJTBDDTNPCk_0F3ObEcpAS0no,265
131
134
  anthropic/types/server_tool_use_block.py,sha256=oim9TZxqdRaR3GzQQpc9y8wPlIFMGVhOTIAT2Vn9u6g,333
132
135
  anthropic/types/server_tool_use_block_param.py,sha256=u6umSKDkkE5p2iFM3AaWs-mlfzTh7WxYU2rpT8vLJkE,643
@@ -134,8 +137,8 @@ anthropic/types/signature_delta.py,sha256=1e7MwUUU2j5oOie79x-5QU4-Fi1WXccDqgIMnv
134
137
  anthropic/types/stop_reason.py,sha256=LZTfwN184HpIH4xNBwgNZ44EskkBDIvUWScEgaJWSd0,275
135
138
  anthropic/types/text_block.py,sha256=otDts8sbTaDw9kIsvyqMHAxE-hxJv4F4HK4q7QkCmDo,662
136
139
  anthropic/types/text_block_param.py,sha256=oz75dBBWudPw3IBl-Xpu4sLP4OdxQmrz8qbQc6pMoCw,659
137
- anthropic/types/text_citation.py,sha256=gBGZwsd8SQbjYqkpZgLIPrCnqsbXJMNHEveX9tmhgTw,696
138
- anthropic/types/text_citation_param.py,sha256=SKZRfSTDgmc_wWrnPisGca35RYyM4QBjEI9bJ2jZFPs,719
140
+ anthropic/types/text_citation.py,sha256=otKNuFral4D_25v98K5NuGD0pDWKAyHTW5uvr90Wp5o,850
141
+ anthropic/types/text_citation_param.py,sha256=nquWfBfKiw_BPawDbsJaQihcd5p46I_dZJK2Vb2AH_0,843
139
142
  anthropic/types/text_delta.py,sha256=c9IXT5EENOr9TZTD4F6oHbi0gV3SxtsW_FLScgms3SQ,260
140
143
  anthropic/types/thinking_block.py,sha256=2SQDYXwdg0VrYgQVBes6tFY2VU7nFe9UCmqBWL4dun8,290
141
144
  anthropic/types/thinking_block_param.py,sha256=fqeY1_iHnCCcH_36_TZjfwP90BdS8ikSp_WYmHsheSk,367
@@ -150,7 +153,7 @@ anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQ
150
153
  anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
151
154
  anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
152
155
  anthropic/types/tool_param.py,sha256=CiU_bpBntP6-GknQKuI0ghI1CpsMAQWkrVAbLSbvdno,1614
153
- anthropic/types/tool_result_block_param.py,sha256=c7DMaO5RL6G_4aP5FUGJu8k5_uF-JMX49XVFGEL7BEM,826
156
+ anthropic/types/tool_result_block_param.py,sha256=p-NvDniVgdPjmZ5bIhNcpTTUitKEwFnWWU-q1U1nwvM,912
154
157
  anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
155
158
  anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
156
159
  anthropic/types/tool_text_editor_20250728_param.py,sha256=ep1KG6uIZFZ94XhRD0sV3zdtXNcA9WJ9MBtm26Y88U0,906
@@ -325,7 +328,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
325
328
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
326
329
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
327
330
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
328
- anthropic-0.61.0.dist-info/METADATA,sha256=j-V5B4QwZ_19xsBTejMPJrHiKww8v7mN7tvrpggYt2Y,27053
329
- anthropic-0.61.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
330
- anthropic-0.61.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
331
- anthropic-0.61.0.dist-info/RECORD,,
331
+ anthropic-0.63.0.dist-info/METADATA,sha256=NBbDAsLZcaenqpBrT2ITxsl_GNlQrPuICeKmLzIKdas,27053
332
+ anthropic-0.63.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
333
+ anthropic-0.63.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
334
+ anthropic-0.63.0.dist-info/RECORD,,