anthropic 0.71.0__py3-none-any.whl → 0.72.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/_base_client.py +6 -2
- anthropic/_version.py +1 -1
- anthropic/resources/messages/messages.py +2 -2
- anthropic/types/beta/__init__.py +8 -0
- anthropic/types/beta/beta_all_thinking_turns_param.py +11 -0
- anthropic/types/beta/beta_clear_thinking_20251015_edit_param.py +23 -0
- anthropic/types/beta/beta_clear_thinking_20251015_edit_response.py +18 -0
- anthropic/types/beta/beta_context_management_config_param.py +7 -4
- anthropic/types/beta/beta_context_management_response.py +11 -3
- anthropic/types/beta/beta_mcp_tool_use_block.py +2 -1
- anthropic/types/beta/beta_mcp_tool_use_block_param.py +2 -2
- anthropic/types/beta/beta_server_tool_use_block.py +2 -1
- anthropic/types/beta/beta_server_tool_use_block_param.py +2 -2
- anthropic/types/beta/beta_thinking_turns_param.py +13 -0
- anthropic/types/beta/beta_tool_param.py +1 -1
- anthropic/types/beta/beta_tool_use_block.py +2 -1
- anthropic/types/beta/beta_tool_use_block_param.py +2 -2
- anthropic/types/model.py +0 -3
- anthropic/types/model_param.py +0 -3
- anthropic/types/server_tool_use_block.py +2 -1
- anthropic/types/server_tool_use_block_param.py +2 -2
- anthropic/types/tool_param.py +1 -1
- anthropic/types/tool_use_block.py +2 -1
- anthropic/types/tool_use_block_param.py +2 -2
- {anthropic-0.71.0.dist-info → anthropic-0.72.0.dist-info}/METADATA +2 -2
- {anthropic-0.71.0.dist-info → anthropic-0.72.0.dist-info}/RECORD +28 -24
- {anthropic-0.71.0.dist-info → anthropic-0.72.0.dist-info}/WHEEL +0 -0
- {anthropic-0.71.0.dist-info → anthropic-0.72.0.dist-info}/licenses/LICENSE +0 -0
anthropic/_base_client.py
CHANGED
|
@@ -843,6 +843,8 @@ class _DefaultHttpxClient(httpx.Client):
|
|
|
843
843
|
arg: kwargs[arg] for arg in ("verify", "cert", "trust_env", "http1", "http2", "limits") if arg in kwargs
|
|
844
844
|
}
|
|
845
845
|
|
|
846
|
+
transport_kwargs["socket_options"] = socket_options
|
|
847
|
+
|
|
846
848
|
proxy_mounts = {
|
|
847
849
|
key: None if proxy is None else HTTPTransport(proxy=proxy, **transport_kwargs)
|
|
848
850
|
for key, proxy in proxy_map.items()
|
|
@@ -854,7 +856,7 @@ class _DefaultHttpxClient(httpx.Client):
|
|
|
854
856
|
kwargs["mounts"] = proxy_mounts
|
|
855
857
|
|
|
856
858
|
# Sets the default transport so that HTTPX won't automatically configure proxies.
|
|
857
|
-
kwargs["transport"] =
|
|
859
|
+
kwargs["transport"] = default_transport
|
|
858
860
|
|
|
859
861
|
super().__init__(**kwargs)
|
|
860
862
|
|
|
@@ -1404,6 +1406,8 @@ class _DefaultAsyncHttpxClient(httpx.AsyncClient):
|
|
|
1404
1406
|
arg: kwargs[arg] for arg in ("verify", "cert", "trust_env", "http1", "http2", "limits") if arg in kwargs
|
|
1405
1407
|
}
|
|
1406
1408
|
|
|
1409
|
+
transport_kwargs["socket_options"] = socket_options
|
|
1410
|
+
|
|
1407
1411
|
proxy_mounts = {
|
|
1408
1412
|
key: None if proxy is None else AsyncHTTPTransport(proxy=proxy, **transport_kwargs)
|
|
1409
1413
|
for key, proxy in proxy_map.items()
|
|
@@ -1415,7 +1419,7 @@ class _DefaultAsyncHttpxClient(httpx.AsyncClient):
|
|
|
1415
1419
|
kwargs["mounts"] = proxy_mounts
|
|
1416
1420
|
|
|
1417
1421
|
# Sets the default transport so that HTTPX won't automatically configure proxies.
|
|
1418
|
-
kwargs["transport"] =
|
|
1422
|
+
kwargs["transport"] = default_transport
|
|
1419
1423
|
|
|
1420
1424
|
super().__init__(**kwargs)
|
|
1421
1425
|
|
anthropic/_version.py
CHANGED
|
@@ -57,8 +57,8 @@ DEPRECATED_MODELS = {
|
|
|
57
57
|
"claude-3-opus-20240229": "January 5th, 2026",
|
|
58
58
|
"claude-2.1": "July 21st, 2025",
|
|
59
59
|
"claude-2.0": "July 21st, 2025",
|
|
60
|
-
"claude-3-
|
|
61
|
-
"claude-3-
|
|
60
|
+
"claude-3-7-sonnet-latest": "February 19th, 2026",
|
|
61
|
+
"claude-3-7-sonnet-20250219": "February 19th, 2026",
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
|
anthropic/types/beta/__init__.py
CHANGED
|
@@ -52,6 +52,7 @@ from .beta_message_delta_usage import BetaMessageDeltaUsage as BetaMessageDeltaU
|
|
|
52
52
|
from .beta_text_citation_param import BetaTextCitationParam as BetaTextCitationParam
|
|
53
53
|
from .beta_message_tokens_count import BetaMessageTokensCount as BetaMessageTokensCount
|
|
54
54
|
from .beta_thinking_block_param import BetaThinkingBlockParam as BetaThinkingBlockParam
|
|
55
|
+
from .beta_thinking_turns_param import BetaThinkingTurnsParam as BetaThinkingTurnsParam
|
|
55
56
|
from .beta_tool_use_block_param import BetaToolUseBlockParam as BetaToolUseBlockParam
|
|
56
57
|
from .beta_tool_uses_keep_param import BetaToolUsesKeepParam as BetaToolUsesKeepParam
|
|
57
58
|
from .beta_url_pdf_source_param import BetaURLPDFSourceParam as BetaURLPDFSourceParam
|
|
@@ -81,6 +82,7 @@ from .beta_redacted_thinking_block import BetaRedactedThinkingBlock as BetaRedac
|
|
|
81
82
|
from .beta_tool_result_block_param import BetaToolResultBlockParam as BetaToolResultBlockParam
|
|
82
83
|
from .beta_tool_uses_trigger_param import BetaToolUsesTriggerParam as BetaToolUsesTriggerParam
|
|
83
84
|
from .beta_web_search_result_block import BetaWebSearchResultBlock as BetaWebSearchResultBlock
|
|
85
|
+
from .beta_all_thinking_turns_param import BetaAllThinkingTurnsParam as BetaAllThinkingTurnsParam
|
|
84
86
|
from .beta_mcp_tool_use_block_param import BetaMCPToolUseBlockParam as BetaMCPToolUseBlockParam
|
|
85
87
|
from .beta_raw_message_stream_event import BetaRawMessageStreamEvent as BetaRawMessageStreamEvent
|
|
86
88
|
from .beta_tool_bash_20241022_param import BetaToolBash20241022Param as BetaToolBash20241022Param
|
|
@@ -140,6 +142,9 @@ from .beta_memory_tool_20250818_view_command import (
|
|
|
140
142
|
from .beta_web_fetch_tool_result_block_param import BetaWebFetchToolResultBlockParam as BetaWebFetchToolResultBlockParam
|
|
141
143
|
from .beta_web_fetch_tool_result_error_block import BetaWebFetchToolResultErrorBlock as BetaWebFetchToolResultErrorBlock
|
|
142
144
|
from .beta_web_search_tool_result_error_code import BetaWebSearchToolResultErrorCode as BetaWebSearchToolResultErrorCode
|
|
145
|
+
from .beta_clear_thinking_20251015_edit_param import (
|
|
146
|
+
BetaClearThinking20251015EditParam as BetaClearThinking20251015EditParam,
|
|
147
|
+
)
|
|
143
148
|
from .beta_code_execution_tool_20250522_param import (
|
|
144
149
|
BetaCodeExecutionTool20250522Param as BetaCodeExecutionTool20250522Param,
|
|
145
150
|
)
|
|
@@ -191,6 +196,9 @@ from .beta_citation_content_block_location_param import (
|
|
|
191
196
|
from .beta_citation_search_result_location_param import (
|
|
192
197
|
BetaCitationSearchResultLocationParam as BetaCitationSearchResultLocationParam,
|
|
193
198
|
)
|
|
199
|
+
from .beta_clear_thinking_20251015_edit_response import (
|
|
200
|
+
BetaClearThinking20251015EditResponse as BetaClearThinking20251015EditResponse,
|
|
201
|
+
)
|
|
194
202
|
from .beta_code_execution_tool_result_error_code import (
|
|
195
203
|
BetaCodeExecutionToolResultErrorCode as BetaCodeExecutionToolResultErrorCode,
|
|
196
204
|
)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Literal, Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["BetaAllThinkingTurnsParam"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BetaAllThinkingTurnsParam(TypedDict, total=False):
|
|
11
|
+
type: Required[Literal["all"]]
|
|
@@ -0,0 +1,23 @@
|
|
|
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 Union
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
|
+
|
|
8
|
+
from .beta_thinking_turns_param import BetaThinkingTurnsParam
|
|
9
|
+
from .beta_all_thinking_turns_param import BetaAllThinkingTurnsParam
|
|
10
|
+
|
|
11
|
+
__all__ = ["BetaClearThinking20251015EditParam", "Keep"]
|
|
12
|
+
|
|
13
|
+
Keep: TypeAlias = Union[BetaThinkingTurnsParam, BetaAllThinkingTurnsParam, Literal["all"]]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class BetaClearThinking20251015EditParam(TypedDict, total=False):
|
|
17
|
+
type: Required[Literal["clear_thinking_20251015"]]
|
|
18
|
+
|
|
19
|
+
keep: Keep
|
|
20
|
+
"""Number of most recent assistant turns to keep thinking blocks for.
|
|
21
|
+
|
|
22
|
+
Older turns will have their thinking blocks removed.
|
|
23
|
+
"""
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing_extensions import Literal
|
|
4
|
+
|
|
5
|
+
from ..._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["BetaClearThinking20251015EditResponse"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BetaClearThinking20251015EditResponse(BaseModel):
|
|
11
|
+
cleared_input_tokens: int
|
|
12
|
+
"""Number of input tokens cleared by this edit."""
|
|
13
|
+
|
|
14
|
+
cleared_thinking_turns: int
|
|
15
|
+
"""Number of thinking turns that were cleared."""
|
|
16
|
+
|
|
17
|
+
type: Literal["clear_thinking_20251015"]
|
|
18
|
+
"""The type of context management edit applied."""
|
|
@@ -2,14 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Iterable
|
|
6
|
-
from typing_extensions import TypedDict
|
|
5
|
+
from typing import Union, Iterable
|
|
6
|
+
from typing_extensions import TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .beta_clear_thinking_20251015_edit_param import BetaClearThinking20251015EditParam
|
|
8
9
|
from .beta_clear_tool_uses_20250919_edit_param import BetaClearToolUses20250919EditParam
|
|
9
10
|
|
|
10
|
-
__all__ = ["BetaContextManagementConfigParam"]
|
|
11
|
+
__all__ = ["BetaContextManagementConfigParam", "Edit"]
|
|
12
|
+
|
|
13
|
+
Edit: TypeAlias = Union[BetaClearToolUses20250919EditParam, BetaClearThinking20251015EditParam]
|
|
11
14
|
|
|
12
15
|
|
|
13
16
|
class BetaContextManagementConfigParam(TypedDict, total=False):
|
|
14
|
-
edits: Iterable[
|
|
17
|
+
edits: Iterable[Edit]
|
|
15
18
|
"""List of context management edits to apply"""
|
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import List
|
|
3
|
+
from typing import List, Union
|
|
4
|
+
from typing_extensions import Annotated, TypeAlias
|
|
4
5
|
|
|
6
|
+
from ..._utils import PropertyInfo
|
|
5
7
|
from ..._models import BaseModel
|
|
8
|
+
from .beta_clear_thinking_20251015_edit_response import BetaClearThinking20251015EditResponse
|
|
6
9
|
from .beta_clear_tool_uses_20250919_edit_response import BetaClearToolUses20250919EditResponse
|
|
7
10
|
|
|
8
|
-
__all__ = ["BetaContextManagementResponse"]
|
|
11
|
+
__all__ = ["BetaContextManagementResponse", "AppliedEdit"]
|
|
12
|
+
|
|
13
|
+
AppliedEdit: TypeAlias = Annotated[
|
|
14
|
+
Union[BetaClearToolUses20250919EditResponse, BetaClearThinking20251015EditResponse],
|
|
15
|
+
PropertyInfo(discriminator="type"),
|
|
16
|
+
]
|
|
9
17
|
|
|
10
18
|
|
|
11
19
|
class BetaContextManagementResponse(BaseModel):
|
|
12
|
-
applied_edits: List[
|
|
20
|
+
applied_edits: List[AppliedEdit]
|
|
13
21
|
"""List of context management edits that were applied."""
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Dict
|
|
3
4
|
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from ..._models import BaseModel
|
|
@@ -10,7 +11,7 @@ __all__ = ["BetaMCPToolUseBlock"]
|
|
|
10
11
|
class BetaMCPToolUseBlock(BaseModel):
|
|
11
12
|
id: str
|
|
12
13
|
|
|
13
|
-
input: object
|
|
14
|
+
input: Dict[str, object]
|
|
14
15
|
|
|
15
16
|
name: str
|
|
16
17
|
"""The name of the MCP tool"""
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
8
|
from .beta_cache_control_ephemeral_param import BetaCacheControlEphemeralParam
|
|
@@ -13,7 +13,7 @@ __all__ = ["BetaMCPToolUseBlockParam"]
|
|
|
13
13
|
class BetaMCPToolUseBlockParam(TypedDict, total=False):
|
|
14
14
|
id: Required[str]
|
|
15
15
|
|
|
16
|
-
input: Required[object]
|
|
16
|
+
input: Required[Dict[str, object]]
|
|
17
17
|
|
|
18
18
|
name: Required[str]
|
|
19
19
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Dict
|
|
3
4
|
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from ..._models import BaseModel
|
|
@@ -10,7 +11,7 @@ __all__ = ["BetaServerToolUseBlock"]
|
|
|
10
11
|
class BetaServerToolUseBlock(BaseModel):
|
|
11
12
|
id: str
|
|
12
13
|
|
|
13
|
-
input: object
|
|
14
|
+
input: Dict[str, object]
|
|
14
15
|
|
|
15
16
|
name: Literal["web_search", "web_fetch", "code_execution", "bash_code_execution", "text_editor_code_execution"]
|
|
16
17
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
8
|
from .beta_cache_control_ephemeral_param import BetaCacheControlEphemeralParam
|
|
@@ -13,7 +13,7 @@ __all__ = ["BetaServerToolUseBlockParam"]
|
|
|
13
13
|
class BetaServerToolUseBlockParam(TypedDict, total=False):
|
|
14
14
|
id: Required[str]
|
|
15
15
|
|
|
16
|
-
input: Required[object]
|
|
16
|
+
input: Required[Dict[str, object]]
|
|
17
17
|
|
|
18
18
|
name: Required[
|
|
19
19
|
Literal["web_search", "web_fetch", "code_execution", "bash_code_execution", "text_editor_code_execution"]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Literal, Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["BetaThinkingTurnsParam"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BetaThinkingTurnsParam(TypedDict, total=False):
|
|
11
|
+
type: Required[Literal["thinking_turns"]]
|
|
12
|
+
|
|
13
|
+
value: Required[int]
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Dict
|
|
3
4
|
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from ..._models import BaseModel
|
|
@@ -10,7 +11,7 @@ __all__ = ["BetaToolUseBlock"]
|
|
|
10
11
|
class BetaToolUseBlock(BaseModel):
|
|
11
12
|
id: str
|
|
12
13
|
|
|
13
|
-
input: object
|
|
14
|
+
input: Dict[str, object]
|
|
14
15
|
|
|
15
16
|
name: str
|
|
16
17
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
8
|
from .beta_cache_control_ephemeral_param import BetaCacheControlEphemeralParam
|
|
@@ -13,7 +13,7 @@ __all__ = ["BetaToolUseBlockParam"]
|
|
|
13
13
|
class BetaToolUseBlockParam(TypedDict, total=False):
|
|
14
14
|
id: Required[str]
|
|
15
15
|
|
|
16
|
-
input: Required[object]
|
|
16
|
+
input: Required[Dict[str, object]]
|
|
17
17
|
|
|
18
18
|
name: Required[str]
|
|
19
19
|
|
anthropic/types/model.py
CHANGED
|
@@ -18,9 +18,6 @@ Model: TypeAlias = Union[
|
|
|
18
18
|
"claude-4-sonnet-20250514",
|
|
19
19
|
"claude-sonnet-4-5",
|
|
20
20
|
"claude-sonnet-4-5-20250929",
|
|
21
|
-
"claude-3-5-sonnet-latest",
|
|
22
|
-
"claude-3-5-sonnet-20241022",
|
|
23
|
-
"claude-3-5-sonnet-20240620",
|
|
24
21
|
"claude-opus-4-0",
|
|
25
22
|
"claude-opus-4-20250514",
|
|
26
23
|
"claude-4-opus-20250514",
|
anthropic/types/model_param.py
CHANGED
|
@@ -20,9 +20,6 @@ ModelParam: TypeAlias = Union[
|
|
|
20
20
|
"claude-4-sonnet-20250514",
|
|
21
21
|
"claude-sonnet-4-5",
|
|
22
22
|
"claude-sonnet-4-5-20250929",
|
|
23
|
-
"claude-3-5-sonnet-latest",
|
|
24
|
-
"claude-3-5-sonnet-20241022",
|
|
25
|
-
"claude-3-5-sonnet-20240620",
|
|
26
23
|
"claude-opus-4-0",
|
|
27
24
|
"claude-opus-4-20250514",
|
|
28
25
|
"claude-4-opus-20250514",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Dict
|
|
3
4
|
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from .._models import BaseModel
|
|
@@ -10,7 +11,7 @@ __all__ = ["ServerToolUseBlock"]
|
|
|
10
11
|
class ServerToolUseBlock(BaseModel):
|
|
11
12
|
id: str
|
|
12
13
|
|
|
13
|
-
input: object
|
|
14
|
+
input: Dict[str, object]
|
|
14
15
|
|
|
15
16
|
name: Literal["web_search"]
|
|
16
17
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
8
|
from .cache_control_ephemeral_param import CacheControlEphemeralParam
|
|
@@ -13,7 +13,7 @@ __all__ = ["ServerToolUseBlockParam"]
|
|
|
13
13
|
class ServerToolUseBlockParam(TypedDict, total=False):
|
|
14
14
|
id: Required[str]
|
|
15
15
|
|
|
16
|
-
input: Required[object]
|
|
16
|
+
input: Required[Dict[str, object]]
|
|
17
17
|
|
|
18
18
|
name: Required[Literal["web_search"]]
|
|
19
19
|
|
anthropic/types/tool_param.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Dict
|
|
3
4
|
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from .._models import BaseModel
|
|
@@ -10,7 +11,7 @@ __all__ = ["ToolUseBlock"]
|
|
|
10
11
|
class ToolUseBlock(BaseModel):
|
|
11
12
|
id: str
|
|
12
13
|
|
|
13
|
-
input: object
|
|
14
|
+
input: Dict[str, object]
|
|
14
15
|
|
|
15
16
|
name: str
|
|
16
17
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
8
|
from .cache_control_ephemeral_param import CacheControlEphemeralParam
|
|
@@ -13,7 +13,7 @@ __all__ = ["ToolUseBlockParam"]
|
|
|
13
13
|
class ToolUseBlockParam(TypedDict, total=False):
|
|
14
14
|
id: Required[str]
|
|
15
15
|
|
|
16
|
-
input: Required[object]
|
|
16
|
+
input: Required[Dict[str, object]]
|
|
17
17
|
|
|
18
18
|
name: Required[str]
|
|
19
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.72.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
|
|
@@ -32,7 +32,7 @@ Requires-Dist: sniffio
|
|
|
32
32
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
33
33
|
Provides-Extra: aiohttp
|
|
34
34
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
35
|
-
Requires-Dist: httpx-aiohttp>=0.1.
|
|
35
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
36
36
|
Provides-Extra: bedrock
|
|
37
37
|
Requires-Dist: boto3>=1.28.57; extra == 'bedrock'
|
|
38
38
|
Requires-Dist: botocore>=1.31.57; extra == 'bedrock'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
anthropic/__init__.py,sha256=sPNLvrXJGDKWSF87xPj6CidUbcMD4sAVIzip4BeEP7g,2981
|
|
2
|
-
anthropic/_base_client.py,sha256=
|
|
2
|
+
anthropic/_base_client.py,sha256=Ca5ANeCg2kvkN3Ego42boLcHIhj9npORXzh3VGQs1tw,72929
|
|
3
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
|
|
@@ -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=3ZCR889gXxz2zNMDMPvjFEQ9Kc-EAyPH3Gzg90fabWk,162
|
|
16
16
|
anthropic/pagination.py,sha256=MgGFbx3GDm4XASijWas0-2eVb1iGR-DgqyPrDf5Jll8,5152
|
|
17
17
|
anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
anthropic/_decoders/jsonl.py,sha256=KDLw-Frjo7gRup5qDp_BWkXIZ-mFZU5vFDz0WBhEKcs,3510
|
|
@@ -71,7 +71,7 @@ anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqo
|
|
|
71
71
|
anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
|
|
72
72
|
anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
|
|
73
73
|
anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
|
|
74
|
-
anthropic/resources/messages/messages.py,sha256=
|
|
74
|
+
anthropic/resources/messages/messages.py,sha256=O4mKyIIKPSTIL9Ud7j-F2QBMTciwbfkTuWnb7hiSjVk,108526
|
|
75
75
|
anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
|
|
76
76
|
anthropic/types/anthropic_beta_param.py,sha256=TLDPgIjC5ZYDJXPCbszi6CoGBgeBdLRs3qs7Rw5AgEk,970
|
|
77
77
|
anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
|
|
@@ -125,10 +125,10 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
|
|
|
125
125
|
anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
|
|
126
126
|
anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
|
|
127
127
|
anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
|
|
128
|
-
anthropic/types/model.py,sha256=
|
|
128
|
+
anthropic/types/model.py,sha256=snPrs9phxAQqz6Eky_lVHDya0WttYlrQyjR0toiD6nc,851
|
|
129
129
|
anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
|
|
130
130
|
anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
|
|
131
|
-
anthropic/types/model_param.py,sha256=
|
|
131
|
+
anthropic/types/model_param.py,sha256=RciNjl0f1i_BBlpdO800-LomLSrngA96hsRK97gHgL0,897
|
|
132
132
|
anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
|
|
133
133
|
anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
|
|
134
134
|
anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
|
|
@@ -142,8 +142,8 @@ anthropic/types/redacted_thinking_block.py,sha256=rRoc3AUPGUaYywZ29cLkZ7oGvaAj69
|
|
|
142
142
|
anthropic/types/redacted_thinking_block_param.py,sha256=x00GNJXOnAYLPqWMrkRDcHveOJEvrU4iAaTP1rmNqBU,358
|
|
143
143
|
anthropic/types/search_result_block_param.py,sha256=89JZzDqAAZcQZFu6Yy1jNqXK0Px64RGg8wyg6mN0Pfs,795
|
|
144
144
|
anthropic/types/server_tool_usage.py,sha256=nccmvOnXVirtx_ORf4xJTBDDTNPCk_0F3ObEcpAS0no,265
|
|
145
|
-
anthropic/types/server_tool_use_block.py,sha256=
|
|
146
|
-
anthropic/types/server_tool_use_block_param.py,sha256=
|
|
145
|
+
anthropic/types/server_tool_use_block.py,sha256=dy7OajUm1eM97iAN0xt77VtbNHHNbfH3Ox-vTSlYjwQ,368
|
|
146
|
+
anthropic/types/server_tool_use_block_param.py,sha256=uCKHTFeg5lf7KAYlXiYoQsYVQ23_vub053nd0Jxk4NM,660
|
|
147
147
|
anthropic/types/signature_delta.py,sha256=1e7MwUUU2j5oOie79x-5QU4-Fi1WXccDqgIMnvxfXTQ,280
|
|
148
148
|
anthropic/types/stop_reason.py,sha256=LZTfwN184HpIH4xNBwgNZ44EskkBDIvUWScEgaJWSd0,275
|
|
149
149
|
anthropic/types/text_block.py,sha256=otDts8sbTaDw9kIsvyqMHAxE-hxJv4F4HK4q7QkCmDo,662
|
|
@@ -163,14 +163,14 @@ anthropic/types/tool_choice_auto_param.py,sha256=F6ZzaVnXZgCa9AxEddyHu_xsO5sK4n-
|
|
|
163
163
|
anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQToAm-Wwukac0,306
|
|
164
164
|
anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
|
|
165
165
|
anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
|
|
166
|
-
anthropic/types/tool_param.py,sha256=
|
|
166
|
+
anthropic/types/tool_param.py,sha256=Vfyh23gcySfEuBk-W9pVsLonxyHwg0myBouyaNqvVdw,1665
|
|
167
167
|
anthropic/types/tool_result_block_param.py,sha256=0rbEAOygNLSnt03pfVdZfcTEVWK_CbBdk2mdUTN0gkg,985
|
|
168
168
|
anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
|
|
169
169
|
anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
|
|
170
170
|
anthropic/types/tool_text_editor_20250728_param.py,sha256=ep1KG6uIZFZ94XhRD0sV3zdtXNcA9WJ9MBtm26Y88U0,906
|
|
171
171
|
anthropic/types/tool_union_param.py,sha256=sc_0_oZXDX1irFKjzodgFw6NoWyZK_2QwMoHb7VmG1o,814
|
|
172
|
-
anthropic/types/tool_use_block.py,sha256=
|
|
173
|
-
anthropic/types/tool_use_block_param.py,sha256=
|
|
172
|
+
anthropic/types/tool_use_block.py,sha256=J7sfsR1qlXgoglwcYaXktgaeEfS8oBYUwe1bqG7w9C4,331
|
|
173
|
+
anthropic/types/tool_use_block_param.py,sha256=m5biFrQ21gEEwBu9UgoVXVCK_TwHdJMvvQ_Gl_MC45o,623
|
|
174
174
|
anthropic/types/url_image_source_param.py,sha256=jhgWbgwFgChO8v_XZzuMpuv2u3E0R8zISam8WbVwXyw,329
|
|
175
175
|
anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn3euIWPBMKk,325
|
|
176
176
|
anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
|
|
@@ -183,7 +183,8 @@ anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTd
|
|
|
183
183
|
anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
|
|
184
184
|
anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
|
|
185
185
|
anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
|
|
186
|
-
anthropic/types/beta/__init__.py,sha256=
|
|
186
|
+
anthropic/types/beta/__init__.py,sha256=9Z2azErHoLFgQ2qP3gj8_gjuD3V_lSZccNoQOP9QP28,19485
|
|
187
|
+
anthropic/types/beta/beta_all_thinking_turns_param.py,sha256=tC2sF_TI22gg4pa6BN4EYHEdudq0M5DIiAQczqiWyAo,317
|
|
187
188
|
anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
|
|
188
189
|
anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
|
|
189
190
|
anthropic/types/beta/beta_base64_pdf_source.py,sha256=RbkrF6vfc4tMgntlk3U7jmrdpa876HxO8iDa28szsKA,321
|
|
@@ -211,6 +212,8 @@ anthropic/types/beta/beta_citation_web_search_result_location_param.py,sha256=4R
|
|
|
211
212
|
anthropic/types/beta/beta_citations_config_param.py,sha256=3mv2HzC7BII1OYox10dhjtgxiRmucT5eNYRLxLoYm7E,279
|
|
212
213
|
anthropic/types/beta/beta_citations_delta.py,sha256=Fjk3Sv5fVuZ90q4tPANkELaiWjLrTxhu2xb8ipitiH4,1069
|
|
213
214
|
anthropic/types/beta/beta_citations_web_search_result_location.py,sha256=m03Z39Tc2_6Kcx-qg0_odmWgMZbdNcUsMGFOPrYrOIQ,438
|
|
215
|
+
anthropic/types/beta/beta_clear_thinking_20251015_edit_param.py,sha256=hQwdR1Zli632QTSIReaZMie9kFadB1lSIHfz8eXhGh0,779
|
|
216
|
+
anthropic/types/beta/beta_clear_thinking_20251015_edit_response.py,sha256=gYTDMSREW1-gQ-J6jCecZEaJGq7ofxIyqfIUHCL-tcM,543
|
|
214
217
|
anthropic/types/beta/beta_clear_tool_uses_20250919_edit_param.py,sha256=_8AVMNiDDw1J0Ojkzk3gi1Feyu6Z-zqGrR_0mluV2lE,1485
|
|
215
218
|
anthropic/types/beta/beta_clear_tool_uses_20250919_edit_response.py,sha256=mbHO2KfaTVYREJBkxhPj4vEFtZyFtwlezKObsv7Fe6E,534
|
|
216
219
|
anthropic/types/beta/beta_code_execution_output_block.py,sha256=OpNDX-uckWDLBg70X1gKYNk2LAj6Re3UCOgOsnxJY1I,313
|
|
@@ -234,8 +237,8 @@ anthropic/types/beta/beta_content_block.py,sha256=vmZXOq7Frx8xAYVV5eDC9FbNq-wyL8
|
|
|
234
237
|
anthropic/types/beta/beta_content_block_param.py,sha256=87vnYL2-j7vOtT-dldIn0XNdVkhwWY_R_u64cmGZaQc,2260
|
|
235
238
|
anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
|
|
236
239
|
anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
|
|
237
|
-
anthropic/types/beta/beta_context_management_config_param.py,sha256=
|
|
238
|
-
anthropic/types/beta/beta_context_management_response.py,sha256=
|
|
240
|
+
anthropic/types/beta/beta_context_management_config_param.py,sha256=cs3d7mNlprV34_UX8QPihM1FkCx6Tnzo7CjWVBVD0Qk,684
|
|
241
|
+
anthropic/types/beta/beta_context_management_response.py,sha256=qwkhE6vtToG7m34R8cxPyOfzej_x7Nfeis5tuEWk8mI,804
|
|
239
242
|
anthropic/types/beta/beta_count_tokens_context_management_response.py,sha256=efL0nsrOlA7KTIQ-M5IiXRmbmb6q-dakLp3oNnEh5G8,341
|
|
240
243
|
anthropic/types/beta/beta_document_block.py,sha256=lehaAYYdGHJay8F_J-GfMLOYWAe0G8gVWfeixA5XH2s,834
|
|
241
244
|
anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
|
|
@@ -245,8 +248,8 @@ anthropic/types/beta/beta_input_json_delta.py,sha256=MPlt9LmfuwmpWryQagjkkVHHZRf
|
|
|
245
248
|
anthropic/types/beta/beta_input_tokens_clear_at_least_param.py,sha256=9VMW4rN_ZeSQp5ianz-815vc_h23XjC-FI6ZICsC7d8,366
|
|
246
249
|
anthropic/types/beta/beta_input_tokens_trigger_param.py,sha256=_7MSRq8ZykSOZxxr2upnPqpSZEQ42_m53wHhcqiQ2rE,356
|
|
247
250
|
anthropic/types/beta/beta_mcp_tool_result_block.py,sha256=mqx1WHh13wYoGpf5PnG8dgGsihq3qd9Pg6t9nolIwGI,439
|
|
248
|
-
anthropic/types/beta/beta_mcp_tool_use_block.py,sha256=
|
|
249
|
-
anthropic/types/beta/beta_mcp_tool_use_block_param.py,sha256=
|
|
251
|
+
anthropic/types/beta/beta_mcp_tool_use_block.py,sha256=KRvDIWyDfq5i2zKGtlY3ZDxHsYxtfmqHa0knEJ5UZnU,444
|
|
252
|
+
anthropic/types/beta/beta_mcp_tool_use_block_param.py,sha256=sE-16rLzREIri44iPGbQgAuRMw-Tsj5vTLUonOqW5K0,723
|
|
250
253
|
anthropic/types/beta/beta_memory_tool_20250818_command.py,sha256=It-xNhxO4M7DSqpczVfZq7mD2FPDZniHGUxCq9wSGGs,1179
|
|
251
254
|
anthropic/types/beta/beta_memory_tool_20250818_create_command.py,sha256=jmrc8aWVghMz5PRW7vo5LPp3GaUDZkl7Ir8rmqNVsHw,453
|
|
252
255
|
anthropic/types/beta/beta_memory_tool_20250818_delete_command.py,sha256=dRjSRkChmc6P_vIwIWlknVEXcXikM6EZjJxZgqfT-TA,396
|
|
@@ -279,8 +282,8 @@ anthropic/types/beta/beta_request_mcp_server_url_definition_param.py,sha256=j8N0
|
|
|
279
282
|
anthropic/types/beta/beta_request_mcp_tool_result_block_param.py,sha256=xK9SY8bmetn-LWN4hks8KDbeh2WiF0pttcCXsB99v84,761
|
|
280
283
|
anthropic/types/beta/beta_search_result_block_param.py,sha256=uqzKu_6YVDRe6rIbVSmfvQE7YleyRfa_UncwI2k3cuI,842
|
|
281
284
|
anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFHqLdT0138Tafqy2az4,352
|
|
282
|
-
anthropic/types/beta/beta_server_tool_use_block.py,sha256=
|
|
283
|
-
anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=
|
|
285
|
+
anthropic/types/beta/beta_server_tool_use_block.py,sha256=aMTBuji1smSyH7xzFEb5us5gbUxX64tJJpYv5XgGYv4,461
|
|
286
|
+
anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=yYrURmcIyhy6z7Q4JL48u_mVvL4I6pgsE7-bcdpfceU,779
|
|
284
287
|
anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
|
|
285
288
|
anthropic/types/beta/beta_skill.py,sha256=eyvKq-A7cSfW3kWNP6KSFHoYCxfTnRe-CgQ396Wx8Js,454
|
|
286
289
|
anthropic/types/beta/beta_skill_params.py,sha256=xqw8ygiJ1oXn5PERZHfY1Pb8doQsZ3_E4WwruG6n7cI,522
|
|
@@ -306,6 +309,7 @@ anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUd
|
|
|
306
309
|
anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kNN0xbBxucO4ScM6JKIANaDfM3toSWE,734
|
|
307
310
|
anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
|
|
308
311
|
anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
|
|
312
|
+
anthropic/types/beta/beta_thinking_turns_param.py,sha256=4rhTtQqaot1VJOhVAIJbGjQ3Q4SVUs9IN0o-TrRfejo,348
|
|
309
313
|
anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=76wGHowVt9Nxe3MNuBwgXS8MtMJ6bvoT0vrEXpsAavQ,713
|
|
310
314
|
anthropic/types/beta/beta_tool_bash_20250124_param.py,sha256=Xu51jwqZlVrGd8Si_E3guAqugOdTFCj5mrg98_fKcYA,713
|
|
311
315
|
anthropic/types/beta/beta_tool_choice_any_param.py,sha256=XKDm4WnqGSeKUr-MsYqR-1-WlmhRig3Nq7VXyxBarkI,493
|
|
@@ -315,15 +319,15 @@ anthropic/types/beta/beta_tool_choice_param.py,sha256=kJnRD1gWzx_NPpyfMShZtoXrUc
|
|
|
315
319
|
anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=TYPA4HbTZrSBcDsMnsk86c0HqBYrkoN71TQq_7yNV4k,560
|
|
316
320
|
anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=AjucXClRInpVVEhI2VnXwICpNCVlysr0YD4w32y56lg,1000
|
|
317
321
|
anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=BIHpALLErLWvFA4Scv4ntAa8NSSmE2WA_EV9DCN6Udw,1000
|
|
318
|
-
anthropic/types/beta/beta_tool_param.py,sha256
|
|
322
|
+
anthropic/types/beta/beta_tool_param.py,sha256=-Avhj5wRJrJcL43w7mLdhBigZpRVon56wwdZwRqzvG8,1586
|
|
319
323
|
anthropic/types/beta/beta_tool_result_block_param.py,sha256=84vvYhCfImu22BECeL-zBvfjNCXV0rIfr7trnR9VE3Q,1086
|
|
320
324
|
anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=z4plQ-egA85ettWcQm3sptpiBv3EYL1VbtrL2fldtTM,746
|
|
321
325
|
anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=PqRpXlK9TqHPOcF5SRkGSeWc793QMNUztuIQKoGHyoI,746
|
|
322
326
|
anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=2skxGp7C7fwrecE2dS22FPRXhxRF8VMQS4K5cNT-fbA,755
|
|
323
327
|
anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=Y9Kx_C2XZQ0BmXoOUEunVJeb7FnGTWH9egNc-S9lzqI,927
|
|
324
328
|
anthropic/types/beta/beta_tool_union_param.py,sha256=wt4nJAkJm0qPHOjpPMMJmePRfjxUcCLnqJwgihAgupY,1838
|
|
325
|
-
anthropic/types/beta/beta_tool_use_block.py,sha256=
|
|
326
|
-
anthropic/types/beta/beta_tool_use_block_param.py,sha256=
|
|
329
|
+
anthropic/types/beta/beta_tool_use_block.py,sha256=38x-oEDJG2F-ATjcTjL2iBvwwL-jRDExq3PxHfMeQxA,340
|
|
330
|
+
anthropic/types/beta/beta_tool_use_block_param.py,sha256=keqjbtEL9NJHejV46eVEPs7xsWgJ7xLjVJ9rqoSOF2I,644
|
|
327
331
|
anthropic/types/beta/beta_tool_uses_keep_param.py,sha256=R9sHxEwQq33kSQEiIG_ONm92EUk0YFmKI039tkhl4vo,341
|
|
328
332
|
anthropic/types/beta/beta_tool_uses_trigger_param.py,sha256=PbTkerKGtnClYCrACGaodsTkHOSpTz801jp_PzvyBEI,347
|
|
329
333
|
anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
|
|
@@ -403,7 +407,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
|
|
|
403
407
|
anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
|
|
404
408
|
anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
|
|
405
409
|
anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
|
|
406
|
-
anthropic-0.
|
|
407
|
-
anthropic-0.
|
|
408
|
-
anthropic-0.
|
|
409
|
-
anthropic-0.
|
|
410
|
+
anthropic-0.72.0.dist-info/METADATA,sha256=R2D_9O2VRgPopvRCtsBXJs8TOirdxeiH0dz-v3DBJ3I,28564
|
|
411
|
+
anthropic-0.72.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
412
|
+
anthropic-0.72.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
|
|
413
|
+
anthropic-0.72.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|