anthropic 0.69.0__py3-none-any.whl → 0.71.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 +1 -1
- anthropic/lib/__init__.py +1 -0
- anthropic/lib/_files.py +42 -0
- anthropic/pagination.py +117 -1
- anthropic/resources/beta/__init__.py +14 -0
- anthropic/resources/beta/beta.py +32 -0
- anthropic/resources/beta/messages/messages.py +140 -122
- anthropic/resources/beta/skills/__init__.py +33 -0
- anthropic/resources/beta/skills/skills.py +680 -0
- anthropic/resources/beta/skills/versions.py +658 -0
- anthropic/resources/completions.py +36 -42
- anthropic/resources/messages/messages.py +90 -96
- anthropic/types/anthropic_beta_param.py +3 -0
- anthropic/types/beta/__init__.py +9 -0
- anthropic/types/beta/beta_container.py +5 -0
- anthropic/types/beta/beta_container_params.py +18 -0
- anthropic/types/beta/beta_message.py +4 -1
- anthropic/types/beta/beta_raw_message_delta_event.py +1 -1
- anthropic/types/beta/beta_skill.py +18 -0
- anthropic/types/beta/beta_skill_params.py +18 -0
- anthropic/types/beta/beta_thinking_config_enabled_param.py +1 -1
- anthropic/types/beta/message_count_tokens_params.py +14 -10
- anthropic/types/beta/message_create_params.py +25 -19
- anthropic/types/beta/messages/batch_create_params.py +1 -0
- anthropic/types/beta/skill_create_params.py +31 -0
- anthropic/types/beta/skill_create_response.py +49 -0
- anthropic/types/beta/skill_delete_response.py +19 -0
- anthropic/types/beta/skill_list_params.py +38 -0
- anthropic/types/beta/skill_list_response.py +49 -0
- anthropic/types/beta/skill_retrieve_response.py +49 -0
- anthropic/types/beta/skills/__init__.py +10 -0
- anthropic/types/beta/skills/version_create_params.py +24 -0
- anthropic/types/beta/skills/version_create_response.py +49 -0
- anthropic/types/beta/skills/version_delete_response.py +19 -0
- anthropic/types/beta/skills/version_list_params.py +25 -0
- anthropic/types/beta/skills/version_list_response.py +49 -0
- anthropic/types/beta/skills/version_retrieve_response.py +49 -0
- anthropic/types/completion_create_params.py +5 -6
- anthropic/types/message_count_tokens_params.py +9 -9
- anthropic/types/message_create_params.py +13 -15
- anthropic/types/messages/batch_create_params.py +1 -0
- anthropic/types/model.py +2 -0
- anthropic/types/model_param.py +2 -0
- anthropic/types/stop_reason.py +1 -3
- anthropic/types/thinking_config_enabled_param.py +1 -1
- {anthropic-0.69.0.dist-info → anthropic-0.71.0.dist-info}/METADATA +1 -1
- {anthropic-0.69.0.dist-info → anthropic-0.71.0.dist-info}/RECORD +49 -29
- {anthropic-0.69.0.dist-info → anthropic-0.71.0.dist-info}/WHEEL +0 -0
- {anthropic-0.69.0.dist-info → anthropic-0.71.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from ...._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["VersionDeleteResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class VersionDeleteResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
"""Version identifier for the skill.
|
|
11
|
+
|
|
12
|
+
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
type: str
|
|
16
|
+
"""Deleted object type.
|
|
17
|
+
|
|
18
|
+
For Skill Versions, this is always `"skill_version_deleted"`.
|
|
19
|
+
"""
|
|
@@ -0,0 +1,25 @@
|
|
|
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 List, Optional
|
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
from ...._utils import PropertyInfo
|
|
9
|
+
from ...anthropic_beta_param import AnthropicBetaParam
|
|
10
|
+
|
|
11
|
+
__all__ = ["VersionListParams"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class VersionListParams(TypedDict, total=False):
|
|
15
|
+
limit: Optional[int]
|
|
16
|
+
"""Number of items to return per page.
|
|
17
|
+
|
|
18
|
+
Defaults to `20`. Ranges from `1` to `1000`.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
page: Optional[str]
|
|
22
|
+
"""Optionally set to the `next_page` token from the previous response."""
|
|
23
|
+
|
|
24
|
+
betas: Annotated[List[AnthropicBetaParam], PropertyInfo(alias="anthropic-beta")]
|
|
25
|
+
"""Optional header to specify the beta version(s) you want to use."""
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from ...._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["VersionListResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class VersionListResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
"""Unique identifier for the skill version.
|
|
11
|
+
|
|
12
|
+
The format and length of IDs may change over time.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
created_at: str
|
|
16
|
+
"""ISO 8601 timestamp of when the skill version was created."""
|
|
17
|
+
|
|
18
|
+
description: str
|
|
19
|
+
"""Description of the skill version.
|
|
20
|
+
|
|
21
|
+
This is extracted from the SKILL.md file in the skill upload.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
directory: str
|
|
25
|
+
"""Directory name of the skill version.
|
|
26
|
+
|
|
27
|
+
This is the top-level directory name that was extracted from the uploaded files.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
name: str
|
|
31
|
+
"""Human-readable name of the skill version.
|
|
32
|
+
|
|
33
|
+
This is extracted from the SKILL.md file in the skill upload.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
skill_id: str
|
|
37
|
+
"""Identifier for the skill that this version belongs to."""
|
|
38
|
+
|
|
39
|
+
type: str
|
|
40
|
+
"""Object type.
|
|
41
|
+
|
|
42
|
+
For Skill Versions, this is always `"skill_version"`.
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
version: str
|
|
46
|
+
"""Version identifier for the skill.
|
|
47
|
+
|
|
48
|
+
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
|
|
49
|
+
"""
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from ...._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["VersionRetrieveResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class VersionRetrieveResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
"""Unique identifier for the skill version.
|
|
11
|
+
|
|
12
|
+
The format and length of IDs may change over time.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
created_at: str
|
|
16
|
+
"""ISO 8601 timestamp of when the skill version was created."""
|
|
17
|
+
|
|
18
|
+
description: str
|
|
19
|
+
"""Description of the skill version.
|
|
20
|
+
|
|
21
|
+
This is extracted from the SKILL.md file in the skill upload.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
directory: str
|
|
25
|
+
"""Directory name of the skill version.
|
|
26
|
+
|
|
27
|
+
This is the top-level directory name that was extracted from the uploaded files.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
name: str
|
|
31
|
+
"""Human-readable name of the skill version.
|
|
32
|
+
|
|
33
|
+
This is extracted from the SKILL.md file in the skill upload.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
skill_id: str
|
|
37
|
+
"""Identifier for the skill that this version belongs to."""
|
|
38
|
+
|
|
39
|
+
type: str
|
|
40
|
+
"""Object type.
|
|
41
|
+
|
|
42
|
+
For Skill Versions, this is always `"skill_version"`.
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
version: str
|
|
46
|
+
"""Version identifier for the skill.
|
|
47
|
+
|
|
48
|
+
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
|
|
49
|
+
"""
|
|
@@ -48,10 +48,9 @@ class CompletionCreateParamsBase(TypedDict, total=False):
|
|
|
48
48
|
"\n\nHuman: {userQuestion}\n\nAssistant:"
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
See [prompt validation](https://docs.
|
|
52
|
-
our guide to
|
|
53
|
-
|
|
54
|
-
details.
|
|
51
|
+
See [prompt validation](https://docs.claude.com/en/api/prompt-validation) and
|
|
52
|
+
our guide to [prompt design](https://docs.claude.com/en/docs/intro-to-prompting)
|
|
53
|
+
for more details.
|
|
55
54
|
"""
|
|
56
55
|
|
|
57
56
|
metadata: MetadataParam
|
|
@@ -110,7 +109,7 @@ class CompletionCreateParamsNonStreaming(CompletionCreateParamsBase, total=False
|
|
|
110
109
|
stream: Literal[False]
|
|
111
110
|
"""Whether to incrementally stream the response using server-sent events.
|
|
112
111
|
|
|
113
|
-
See [streaming](https://docs.
|
|
112
|
+
See [streaming](https://docs.claude.com/en/api/streaming) for details.
|
|
114
113
|
"""
|
|
115
114
|
|
|
116
115
|
|
|
@@ -118,7 +117,7 @@ class CompletionCreateParamsStreaming(CompletionCreateParamsBase):
|
|
|
118
117
|
stream: Required[Literal[True]]
|
|
119
118
|
"""Whether to incrementally stream the response using server-sent events.
|
|
120
119
|
|
|
121
|
-
See [streaming](https://docs.
|
|
120
|
+
See [streaming](https://docs.claude.com/en/api/streaming) for details.
|
|
122
121
|
"""
|
|
123
122
|
|
|
124
123
|
|
|
@@ -74,12 +74,12 @@ class MessageCountTokensParams(TypedDict, total=False):
|
|
|
74
74
|
{ "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
See [input examples](https://docs.
|
|
77
|
+
See [input examples](https://docs.claude.com/en/api/messages-examples).
|
|
78
78
|
|
|
79
79
|
Note that if you want to include a
|
|
80
|
-
[system prompt](https://docs.
|
|
81
|
-
|
|
82
|
-
|
|
80
|
+
[system prompt](https://docs.claude.com/en/docs/system-prompts), you can use the
|
|
81
|
+
top-level `system` parameter — there is no `"system"` role for input messages in
|
|
82
|
+
the Messages API.
|
|
83
83
|
|
|
84
84
|
There is a limit of 100,000 messages in a single request.
|
|
85
85
|
"""
|
|
@@ -96,7 +96,7 @@ class MessageCountTokensParams(TypedDict, total=False):
|
|
|
96
96
|
|
|
97
97
|
A system prompt is a way of providing context and instructions to Claude, such
|
|
98
98
|
as specifying a particular goal or role. See our
|
|
99
|
-
[guide to system prompts](https://docs.
|
|
99
|
+
[guide to system prompts](https://docs.claude.com/en/docs/system-prompts).
|
|
100
100
|
"""
|
|
101
101
|
|
|
102
102
|
thinking: ThinkingConfigParam
|
|
@@ -107,7 +107,7 @@ class MessageCountTokensParams(TypedDict, total=False):
|
|
|
107
107
|
tokens and counts towards your `max_tokens` limit.
|
|
108
108
|
|
|
109
109
|
See
|
|
110
|
-
[extended thinking](https://docs.
|
|
110
|
+
[extended thinking](https://docs.claude.com/en/docs/build-with-claude/extended-thinking)
|
|
111
111
|
for details.
|
|
112
112
|
"""
|
|
113
113
|
|
|
@@ -128,9 +128,9 @@ class MessageCountTokensParams(TypedDict, total=False):
|
|
|
128
128
|
|
|
129
129
|
There are two types of tools: **client tools** and **server tools**. The
|
|
130
130
|
behavior described below applies to client tools. For
|
|
131
|
-
[server tools](https://docs.
|
|
131
|
+
[server tools](https://docs.claude.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
|
|
132
132
|
see their individual documentation as each has its own behavior (e.g., the
|
|
133
|
-
[web search tool](https://docs.
|
|
133
|
+
[web search tool](https://docs.claude.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
|
|
134
134
|
|
|
135
135
|
Each tool definition includes:
|
|
136
136
|
|
|
@@ -193,5 +193,5 @@ class MessageCountTokensParams(TypedDict, total=False):
|
|
|
193
193
|
functions, or more generally whenever you want the model to produce a particular
|
|
194
194
|
JSON structure of output.
|
|
195
195
|
|
|
196
|
-
See our [guide](https://docs.
|
|
196
|
+
See our [guide](https://docs.claude.com/en/docs/tool-use) for more details.
|
|
197
197
|
"""
|
|
@@ -37,7 +37,7 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
37
37
|
only specifies the absolute maximum number of tokens to generate.
|
|
38
38
|
|
|
39
39
|
Different models have different maximum values for this parameter. See
|
|
40
|
-
[models](https://docs.
|
|
40
|
+
[models](https://docs.claude.com/en/docs/models-overview) for details.
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
43
|
messages: Required[Iterable[MessageParam]]
|
|
@@ -98,12 +98,12 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
98
98
|
{ "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
See [input examples](https://docs.
|
|
101
|
+
See [input examples](https://docs.claude.com/en/api/messages-examples).
|
|
102
102
|
|
|
103
103
|
Note that if you want to include a
|
|
104
|
-
[system prompt](https://docs.
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
[system prompt](https://docs.claude.com/en/docs/system-prompts), you can use the
|
|
105
|
+
top-level `system` parameter — there is no `"system"` role for input messages in
|
|
106
|
+
the Messages API.
|
|
107
107
|
|
|
108
108
|
There is a limit of 100,000 messages in a single request.
|
|
109
109
|
"""
|
|
@@ -124,7 +124,7 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
124
124
|
for this request.
|
|
125
125
|
|
|
126
126
|
Anthropic offers different levels of service for your API requests. See
|
|
127
|
-
[service-tiers](https://docs.
|
|
127
|
+
[service-tiers](https://docs.claude.com/en/api/service-tiers) for details.
|
|
128
128
|
"""
|
|
129
129
|
|
|
130
130
|
stop_sequences: SequenceNotStr[str]
|
|
@@ -144,7 +144,7 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
144
144
|
|
|
145
145
|
A system prompt is a way of providing context and instructions to Claude, such
|
|
146
146
|
as specifying a particular goal or role. See our
|
|
147
|
-
[guide to system prompts](https://docs.
|
|
147
|
+
[guide to system prompts](https://docs.claude.com/en/docs/system-prompts).
|
|
148
148
|
"""
|
|
149
149
|
|
|
150
150
|
temperature: float
|
|
@@ -166,7 +166,7 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
166
166
|
tokens and counts towards your `max_tokens` limit.
|
|
167
167
|
|
|
168
168
|
See
|
|
169
|
-
[extended thinking](https://docs.
|
|
169
|
+
[extended thinking](https://docs.claude.com/en/docs/build-with-claude/extended-thinking)
|
|
170
170
|
for details.
|
|
171
171
|
"""
|
|
172
172
|
|
|
@@ -187,9 +187,9 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
187
187
|
|
|
188
188
|
There are two types of tools: **client tools** and **server tools**. The
|
|
189
189
|
behavior described below applies to client tools. For
|
|
190
|
-
[server tools](https://docs.
|
|
190
|
+
[server tools](https://docs.claude.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
|
|
191
191
|
see their individual documentation as each has its own behavior (e.g., the
|
|
192
|
-
[web search tool](https://docs.
|
|
192
|
+
[web search tool](https://docs.claude.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
|
|
193
193
|
|
|
194
194
|
Each tool definition includes:
|
|
195
195
|
|
|
@@ -252,7 +252,7 @@ class MessageCreateParamsBase(TypedDict, total=False):
|
|
|
252
252
|
functions, or more generally whenever you want the model to produce a particular
|
|
253
253
|
JSON structure of output.
|
|
254
254
|
|
|
255
|
-
See our [guide](https://docs.
|
|
255
|
+
See our [guide](https://docs.claude.com/en/docs/tool-use) for more details.
|
|
256
256
|
"""
|
|
257
257
|
|
|
258
258
|
top_k: int
|
|
@@ -298,8 +298,7 @@ class MessageCreateParamsNonStreaming(MessageCreateParamsBase, total=False):
|
|
|
298
298
|
stream: Literal[False]
|
|
299
299
|
"""Whether to incrementally stream the response using server-sent events.
|
|
300
300
|
|
|
301
|
-
See [streaming](https://docs.
|
|
302
|
-
details.
|
|
301
|
+
See [streaming](https://docs.claude.com/en/api/messages-streaming) for details.
|
|
303
302
|
"""
|
|
304
303
|
|
|
305
304
|
|
|
@@ -307,8 +306,7 @@ class MessageCreateParamsStreaming(MessageCreateParamsBase):
|
|
|
307
306
|
stream: Required[Literal[True]]
|
|
308
307
|
"""Whether to incrementally stream the response using server-sent events.
|
|
309
308
|
|
|
310
|
-
See [streaming](https://docs.
|
|
311
|
-
details.
|
|
309
|
+
See [streaming](https://docs.claude.com/en/api/messages-streaming) for details.
|
|
312
310
|
"""
|
|
313
311
|
|
|
314
312
|
|
anthropic/types/model.py
CHANGED
|
@@ -11,6 +11,8 @@ Model: TypeAlias = Union[
|
|
|
11
11
|
"claude-3-7-sonnet-20250219",
|
|
12
12
|
"claude-3-5-haiku-latest",
|
|
13
13
|
"claude-3-5-haiku-20241022",
|
|
14
|
+
"claude-haiku-4-5",
|
|
15
|
+
"claude-haiku-4-5-20251001",
|
|
14
16
|
"claude-sonnet-4-20250514",
|
|
15
17
|
"claude-sonnet-4-0",
|
|
16
18
|
"claude-4-sonnet-20250514",
|
anthropic/types/model_param.py
CHANGED
|
@@ -13,6 +13,8 @@ ModelParam: TypeAlias = Union[
|
|
|
13
13
|
"claude-3-7-sonnet-20250219",
|
|
14
14
|
"claude-3-5-haiku-latest",
|
|
15
15
|
"claude-3-5-haiku-20241022",
|
|
16
|
+
"claude-haiku-4-5",
|
|
17
|
+
"claude-haiku-4-5-20251001",
|
|
16
18
|
"claude-sonnet-4-20250514",
|
|
17
19
|
"claude-sonnet-4-0",
|
|
18
20
|
"claude-4-sonnet-20250514",
|
anthropic/types/stop_reason.py
CHANGED
|
@@ -4,6 +4,4 @@ from typing_extensions import Literal, TypeAlias
|
|
|
4
4
|
|
|
5
5
|
__all__ = ["StopReason"]
|
|
6
6
|
|
|
7
|
-
StopReason: TypeAlias = Literal[
|
|
8
|
-
"end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal", "model_context_window_exceeded"
|
|
9
|
-
]
|
|
7
|
+
StopReason: TypeAlias = Literal["end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal"]
|
|
@@ -17,7 +17,7 @@ class ThinkingConfigEnabledParam(TypedDict, total=False):
|
|
|
17
17
|
Must be ≥1024 and less than `max_tokens`.
|
|
18
18
|
|
|
19
19
|
See
|
|
20
|
-
[extended thinking](https://docs.
|
|
20
|
+
[extended thinking](https://docs.claude.com/en/docs/build-with-claude/extended-thinking)
|
|
21
21
|
for details.
|
|
22
22
|
"""
|
|
23
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.71.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,8 +12,8 @@ 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=
|
|
16
|
-
anthropic/pagination.py,sha256=
|
|
15
|
+
anthropic/_version.py,sha256=H7B-6VS76QjLh0Uua-lR_zmrEZFN8S_zuVwjAFi3HNo,162
|
|
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
|
|
19
19
|
anthropic/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -30,7 +30,8 @@ anthropic/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-
|
|
|
30
30
|
anthropic/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
31
31
|
anthropic/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
32
32
|
anthropic/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
33
|
-
anthropic/lib/__init__.py,sha256=
|
|
33
|
+
anthropic/lib/__init__.py,sha256=ed3VXosCln6iXSojwutNZjzjoIVpDLIHfMiiMiSHjlU,99
|
|
34
|
+
anthropic/lib/_files.py,sha256=7gggVMi-rWE-42gElwl7nncy3Gf_V62Ga6cIln_yG_M,1209
|
|
34
35
|
anthropic/lib/_extras/__init__.py,sha256=a9HX69-V9nROM4Em9a4y-xZTgiLE2jdlCyC6ZKtxfyY,53
|
|
35
36
|
anthropic/lib/_extras/_common.py,sha256=IhHjAsirY2xfLJrzlt9rS_0IPsTJeWqKA2HWUuvDN14,348
|
|
36
37
|
anthropic/lib/_extras/_google_auth.py,sha256=Wukh6VOgcDRYSsFCVT9tx_oXI1ApIsmioSLEMsYvDfw,688
|
|
@@ -56,20 +57,23 @@ anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4
|
|
|
56
57
|
anthropic/lib/vertex/_beta_messages.py,sha256=4fsV2F6TzB14DuHLo9k8i95vymcbixIPjsplqpsHfac,3399
|
|
57
58
|
anthropic/lib/vertex/_client.py,sha256=bvemByz7HdwDIHMojcvBUN7khsI32jFglgtRVDH5o04,16619
|
|
58
59
|
anthropic/resources/__init__.py,sha256=H0t_V-A_u6bIVmbAUpY9ZfgqoNIjIfyNpZz7hAiErIA,1583
|
|
59
|
-
anthropic/resources/completions.py,sha256=
|
|
60
|
+
anthropic/resources/completions.py,sha256=D37K0gGYyKAaR7JLkHnaj0kjcDz8XJ3QUYM_BFalUa0,36598
|
|
60
61
|
anthropic/resources/models.py,sha256=GgfBa0oaEdEHXC04Z9T_9u_VQPnJEaKCcmZLKWDKAPM,12402
|
|
61
|
-
anthropic/resources/beta/__init__.py,sha256=
|
|
62
|
-
anthropic/resources/beta/beta.py,sha256=
|
|
62
|
+
anthropic/resources/beta/__init__.py,sha256=S89446AM8KtupBbPvduL0jnF1Y7IDGQ6M6JYVnLwBgk,1859
|
|
63
|
+
anthropic/resources/beta/beta.py,sha256=HMGHvzyUKGEfXz61u9nY26zeCaxnIcpCP3LmHtomJT0,6047
|
|
63
64
|
anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7tMCYQ,26779
|
|
64
65
|
anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
|
|
65
66
|
anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
|
|
66
67
|
anthropic/resources/beta/messages/batches.py,sha256=O8OfPkfqotwANicpsYrOiqlA2O7G-CaeDK8BpDJRRhU,35840
|
|
67
|
-
anthropic/resources/beta/messages/messages.py,sha256=
|
|
68
|
+
anthropic/resources/beta/messages/messages.py,sha256=VhJ5VBVJWgZpTR9bdAt0QR757jb6zRD-mq-5zW39EIM,135370
|
|
69
|
+
anthropic/resources/beta/skills/__init__.py,sha256=QMC_HEzfI-k0jhfKJThUUjf9wf7Vs8HTxSXYNnvVx2o,836
|
|
70
|
+
anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqoBvOzZ_iURANE,25036
|
|
71
|
+
anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
|
|
68
72
|
anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
|
|
69
73
|
anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
|
|
70
|
-
anthropic/resources/messages/messages.py,sha256=
|
|
74
|
+
anthropic/resources/messages/messages.py,sha256=JxErUoJZjHQTTxDvfHCJZaguQZJPamOmhkLQoflA_ZM,108522
|
|
71
75
|
anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
|
|
72
|
-
anthropic/types/anthropic_beta_param.py,sha256=
|
|
76
|
+
anthropic/types/anthropic_beta_param.py,sha256=TLDPgIjC5ZYDJXPCbszi6CoGBgeBdLRs3qs7Rw5AgEk,970
|
|
73
77
|
anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
|
|
74
78
|
anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
|
|
75
79
|
anthropic/types/beta_api_error.py,sha256=rr_VBxFp9VqNmVjTUokYzpkYRYvO9MVh_t406BvGi38,268
|
|
@@ -98,7 +102,7 @@ anthropic/types/citations_delta.py,sha256=1lnPGh4nfooE90rqBRNonwGvHPuyzF7-Rs76LH
|
|
|
98
102
|
anthropic/types/citations_search_result_location.py,sha256=9UN4QljowQ9p3NVWHiGn_vuh1BTrqQhNU3ijiZ9Atms,480
|
|
99
103
|
anthropic/types/citations_web_search_result_location.py,sha256=rxbcJmhqPa394V5253XDKWtphNklZq44RsKhs8_d_xg,429
|
|
100
104
|
anthropic/types/completion.py,sha256=rwyZeILWQMjzTaYA7wNOJFYQrTobiGt5gsxIpD7ejdI,1151
|
|
101
|
-
anthropic/types/completion_create_params.py,sha256=
|
|
105
|
+
anthropic/types/completion_create_params.py,sha256=rmr4mOvgEFcIVesGCgRDqKrUHuy0-vnreaxs4sbFsVA,4839
|
|
102
106
|
anthropic/types/content_block.py,sha256=GecBwRGBTdWLlBkEox1b6ukKD0r6_4Gxbu__9m4FE-Q,723
|
|
103
107
|
anthropic/types/content_block_delta_event.py,sha256=Y1wLLQioHYK25FeFYMHv0ya2MrOw26iFSksZwnK9eHs,310
|
|
104
108
|
anthropic/types/content_block_param.py,sha256=oBRgNTe1-bW6SOmpV9GJXlmBynzu77qSJQN47Y7bOUI,1108
|
|
@@ -110,9 +114,9 @@ anthropic/types/document_block_param.py,sha256=ATGjDsb0s4A3ExJaljj5kCQh9utjygv1I
|
|
|
110
114
|
anthropic/types/image_block_param.py,sha256=qIh7kE3IyA4wrd4KNhmFmpv2fpOeJr1Dp-WNJLjQVx0,770
|
|
111
115
|
anthropic/types/input_json_delta.py,sha256=s-DsbG4jVex1nYxAXNOeraCqGpbRidCbRqBR_Th2YYI,336
|
|
112
116
|
anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
|
|
113
|
-
anthropic/types/message_count_tokens_params.py,sha256=
|
|
117
|
+
anthropic/types/message_count_tokens_params.py,sha256=7C7sqC2kaixDxA11rGJ9cxaSyJKzabhsoWEQLB6_Obg,6751
|
|
114
118
|
anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
|
|
115
|
-
anthropic/types/message_create_params.py,sha256=
|
|
119
|
+
anthropic/types/message_create_params.py,sha256=7HFrYFxVO6RXM27Z_D_c0E02-YwyYrJuX7i23Vc_jjM,11038
|
|
116
120
|
anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
|
|
117
121
|
anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
|
|
118
122
|
anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
|
|
@@ -121,10 +125,10 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
|
|
|
121
125
|
anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
|
|
122
126
|
anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
|
|
123
127
|
anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
|
|
124
|
-
anthropic/types/model.py,sha256=
|
|
128
|
+
anthropic/types/model.py,sha256=p6smk4Xte5Z_y8Lo07kk_0O5yHFT0bm-xDlAavXAhaU,963
|
|
125
129
|
anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
|
|
126
130
|
anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
|
|
127
|
-
anthropic/types/model_param.py,sha256=
|
|
131
|
+
anthropic/types/model_param.py,sha256=sf2ibTNyO2efOvTgReosHWrSzpx02ZmQEVaGtHVliLk,1009
|
|
128
132
|
anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
|
|
129
133
|
anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
|
|
130
134
|
anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
|
|
@@ -141,7 +145,7 @@ anthropic/types/server_tool_usage.py,sha256=nccmvOnXVirtx_ORf4xJTBDDTNPCk_0F3ObE
|
|
|
141
145
|
anthropic/types/server_tool_use_block.py,sha256=oim9TZxqdRaR3GzQQpc9y8wPlIFMGVhOTIAT2Vn9u6g,333
|
|
142
146
|
anthropic/types/server_tool_use_block_param.py,sha256=u6umSKDkkE5p2iFM3AaWs-mlfzTh7WxYU2rpT8vLJkE,643
|
|
143
147
|
anthropic/types/signature_delta.py,sha256=1e7MwUUU2j5oOie79x-5QU4-Fi1WXccDqgIMnvxfXTQ,280
|
|
144
|
-
anthropic/types/stop_reason.py,sha256=
|
|
148
|
+
anthropic/types/stop_reason.py,sha256=LZTfwN184HpIH4xNBwgNZ44EskkBDIvUWScEgaJWSd0,275
|
|
145
149
|
anthropic/types/text_block.py,sha256=otDts8sbTaDw9kIsvyqMHAxE-hxJv4F4HK4q7QkCmDo,662
|
|
146
150
|
anthropic/types/text_block_param.py,sha256=oz75dBBWudPw3IBl-Xpu4sLP4OdxQmrz8qbQc6pMoCw,659
|
|
147
151
|
anthropic/types/text_citation.py,sha256=otKNuFral4D_25v98K5NuGD0pDWKAyHTW5uvr90Wp5o,850
|
|
@@ -150,7 +154,7 @@ anthropic/types/text_delta.py,sha256=c9IXT5EENOr9TZTD4F6oHbi0gV3SxtsW_FLScgms3SQ
|
|
|
150
154
|
anthropic/types/thinking_block.py,sha256=2SQDYXwdg0VrYgQVBes6tFY2VU7nFe9UCmqBWL4dun8,290
|
|
151
155
|
anthropic/types/thinking_block_param.py,sha256=fqeY1_iHnCCcH_36_TZjfwP90BdS8ikSp_WYmHsheSk,367
|
|
152
156
|
anthropic/types/thinking_config_disabled_param.py,sha256=13QHVviCeaBGcZ2_xsYQROrC9p4-GFhdoeIVXZ9AXX4,326
|
|
153
|
-
anthropic/types/thinking_config_enabled_param.py,sha256=
|
|
157
|
+
anthropic/types/thinking_config_enabled_param.py,sha256=MKCofudk-qk80KzdkXWvA9Id_QeS0Q4_3gznpU0_ZqE,726
|
|
154
158
|
anthropic/types/thinking_config_param.py,sha256=n9h9Z_QtYpV7QnsbvkKYtTpT2opWjmPv1dx-RVKQzy0,463
|
|
155
159
|
anthropic/types/thinking_delta.py,sha256=OfGsFuv2SEKKIbMQw0fdQBnIPZtwNFQEB2oGjlryCNg,276
|
|
156
160
|
anthropic/types/tool_bash_20250124_param.py,sha256=Ww6iipXPdPxUsHXjmBoXahGsKDoA-Q7AM_fMJFPqBmI,692
|
|
@@ -179,7 +183,7 @@ anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTd
|
|
|
179
183
|
anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
|
|
180
184
|
anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
|
|
181
185
|
anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
|
|
182
|
-
anthropic/types/beta/__init__.py,sha256=
|
|
186
|
+
anthropic/types/beta/__init__.py,sha256=VcD8PXQuw8ONUi-V73LqYPqB4fz7DaVxRfdCp1Crkuo,19020
|
|
183
187
|
anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
|
|
184
188
|
anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
|
|
185
189
|
anthropic/types/beta/beta_base64_pdf_source.py,sha256=RbkrF6vfc4tMgntlk3U7jmrdpa876HxO8iDa28szsKA,321
|
|
@@ -222,7 +226,8 @@ anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.p
|
|
|
222
226
|
anthropic/types/beta/beta_code_execution_tool_result_error.py,sha256=SuLEG42APBGhO0jVc2xu8eXLS1_mM9x5trxtwrXS5ok,461
|
|
223
227
|
anthropic/types/beta/beta_code_execution_tool_result_error_code.py,sha256=BqoqrsTwo3PuXYz4mPiZr4z-q1kx2hs5iLoL7_otmyU,338
|
|
224
228
|
anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_buEPIfaeGUnF9_pdfexZhjh_zdQju3LcERNVis,528
|
|
225
|
-
anthropic/types/beta/beta_container.py,sha256=
|
|
229
|
+
anthropic/types/beta/beta_container.py,sha256=Vr8BXNE55XlpcuoebIoxjOpG0SxNl3-tMu6KWMiBkZI,522
|
|
230
|
+
anthropic/types/beta/beta_container_params.py,sha256=PYJotNSzBW7_HdvPSs6N16huwhdIBSv6sGuY0ZHhCmc,481
|
|
226
231
|
anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
|
|
227
232
|
anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
|
|
228
233
|
anthropic/types/beta/beta_content_block.py,sha256=vmZXOq7Frx8xAYVV5eDC9FbNq-wyL8C-J6Tlg0yp7a8,1680
|
|
@@ -250,7 +255,7 @@ anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=qL3iNL_Pk5NI4STT_
|
|
|
250
255
|
anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdurJEXwEdK54_Z-RjzAOMSvo8AeNo2KHD8vlgA,462
|
|
251
256
|
anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
|
|
252
257
|
anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
|
|
253
|
-
anthropic/types/beta/beta_message.py,sha256=
|
|
258
|
+
anthropic/types/beta/beta_message.py,sha256=4s-6QgSHvxkEYCp2Ev-kVcI2yD4vK6PLyS4r_k3Bdx0,4055
|
|
254
259
|
anthropic/types/beta/beta_message_delta_usage.py,sha256=fXrjDgH46VN53jTfHzoBPavFWx4YgBMH1T1ni4f9D2w,838
|
|
255
260
|
anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZkueSrU_Go3gUc,477
|
|
256
261
|
anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
|
|
@@ -262,7 +267,7 @@ anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h
|
|
|
262
267
|
anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
|
|
263
268
|
anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=2UDrpyyC8V6DJADY1oI1P6kHzMS6drucGn05U96ZX3c,1950
|
|
264
269
|
anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
|
|
265
|
-
anthropic/types/beta/beta_raw_message_delta_event.py,sha256=
|
|
270
|
+
anthropic/types/beta/beta_raw_message_delta_event.py,sha256=L1XDYvixPbxjEW-r37TghkL2pn8B0311dj_nky_1xMA,1738
|
|
266
271
|
anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
|
|
267
272
|
anthropic/types/beta/beta_raw_message_stop_event.py,sha256=Xyo-UPOLgjOTCYA8kYZoK4cx_C_Jegd5MYVjf0C2-t8,276
|
|
268
273
|
anthropic/types/beta/beta_raw_message_stream_event.py,sha256=8Aq-QAF0Fk6esNiI_L44Mbr9SMaIFqNfi8p2NF6aO80,999
|
|
@@ -277,6 +282,8 @@ anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFH
|
|
|
277
282
|
anthropic/types/beta/beta_server_tool_use_block.py,sha256=w1TMUg0APiwSZqiUkXd137Fg1SGr9xIX90qvMrZF6Jg,426
|
|
278
283
|
anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=yafWnsAG5jz7NzqcfWAnLtH86p-nNejxW1IUQmmnIJk,762
|
|
279
284
|
anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
|
|
285
|
+
anthropic/types/beta/beta_skill.py,sha256=eyvKq-A7cSfW3kWNP6KSFHoYCxfTnRe-CgQ396Wx8Js,454
|
|
286
|
+
anthropic/types/beta/beta_skill_params.py,sha256=xqw8ygiJ1oXn5PERZHfY1Pb8doQsZ3_E4WwruG6n7cI,522
|
|
280
287
|
anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
|
|
281
288
|
anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
|
|
282
289
|
anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
|
|
@@ -296,7 +303,7 @@ anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py,
|
|
|
296
303
|
anthropic/types/beta/beta_thinking_block.py,sha256=R-w0ZLaNZzELS2udP0vtxtDmE2MgNcf5gXz9FyMQVEg,299
|
|
297
304
|
anthropic/types/beta/beta_thinking_block_param.py,sha256=tiOk592SxRHZ77nDIpLuocz35B_1yB3qbr7MTZqhnEA,375
|
|
298
305
|
anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUdyl43EpEz3BRIFhDG2dQCjcBYjRc54o,334
|
|
299
|
-
anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=
|
|
306
|
+
anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kNN0xbBxucO4ScM6JKIANaDfM3toSWE,734
|
|
300
307
|
anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
|
|
301
308
|
anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
|
|
302
309
|
anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=76wGHowVt9Nxe3MNuBwgXS8MtMJ6bvoT0vrEXpsAavQ,713
|
|
@@ -344,11 +351,17 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
|
|
|
344
351
|
anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
|
|
345
352
|
anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
|
|
346
353
|
anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
|
|
347
|
-
anthropic/types/beta/message_count_tokens_params.py,sha256=
|
|
348
|
-
anthropic/types/beta/message_create_params.py,sha256=
|
|
354
|
+
anthropic/types/beta/message_count_tokens_params.py,sha256=aqUe_mHOUIcDLaX5yK6WVuOhPgUuH3VUVh1eOvnXdEw,9161
|
|
355
|
+
anthropic/types/beta/message_create_params.py,sha256=v2ERAB2hEwWm2xsSZ5IE1TVznJ1FcDOh85MlchTVgMk,11261
|
|
349
356
|
anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
|
|
357
|
+
anthropic/types/beta/skill_create_params.py,sha256=5oyHKyq_Fll_J4PwvxLnI7Jn-ThqfKISSlVClK3AIgQ,978
|
|
358
|
+
anthropic/types/beta/skill_create_response.py,sha256=d6hnEKxiUUvD8chx0RCe0Mm6G-HHCRDz6RDIljc8J24,1161
|
|
359
|
+
anthropic/types/beta/skill_delete_response.py,sha256=6_8iQ8ufvbzoxrrRo2wDC5QPgcdgzMyLo-EhlArNNZw,413
|
|
360
|
+
anthropic/types/beta/skill_list_params.py,sha256=BEzzX3nWpA-EAKx8UIm0_vjcJzDRxWO6o0bkHXuMCS0,1099
|
|
361
|
+
anthropic/types/beta/skill_list_response.py,sha256=jImI_kPHYQ8LHtlzkwD9qjBJHAHps8oLzEJzsarg7nM,1157
|
|
362
|
+
anthropic/types/beta/skill_retrieve_response.py,sha256=MFbkjMKP3a0H38tpsZ4bWZZYLue6eNstgezFJWROROI,1165
|
|
350
363
|
anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
|
|
351
|
-
anthropic/types/beta/messages/batch_create_params.py,sha256=
|
|
364
|
+
anthropic/types/beta/messages/batch_create_params.py,sha256=CfeW3XVQTVT_iEsdbKFhyxPDBEU735YEr6mGttHB80g,1337
|
|
352
365
|
anthropic/types/beta/messages/batch_list_params.py,sha256=_pVFBKhuHPJ3TqXiA9lWO_5W9bjVG291SRCc5BruLuY,978
|
|
353
366
|
anthropic/types/beta/messages/beta_deleted_message_batch.py,sha256=fxnXySfpTxvxxpB0RPYXPcle6M17Bv4LCeMfDguCFaU,438
|
|
354
367
|
anthropic/types/beta/messages/beta_message_batch.py,sha256=xvKuMyh5ozZWi9ZNQG7MChZ69rd7cWunUU1WhgMsJIo,2437
|
|
@@ -359,8 +372,15 @@ anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=M
|
|
|
359
372
|
anthropic/types/beta/messages/beta_message_batch_request_counts.py,sha256=mVj3pgtfgLdOIaMgbPXF8zeh99QuQyPox89T-8g5wWQ,1003
|
|
360
373
|
anthropic/types/beta/messages/beta_message_batch_result.py,sha256=aq-LfNiuRCBg9ZYloNUXRfQEEFJJE7LivWpXyZGIpyg,819
|
|
361
374
|
anthropic/types/beta/messages/beta_message_batch_succeeded_result.py,sha256=y4apNvDRTbJ_ldkpM4tWikiw1o0gROnrITZ0d7Qozrg,355
|
|
375
|
+
anthropic/types/beta/skills/__init__.py,sha256=O7NO7FhQ3882R0q8UthBFi8KlB9Owg93jjdA9ntTGgg,609
|
|
376
|
+
anthropic/types/beta/skills/version_create_params.py,sha256=5608lJ5M0r5fuvRYqndL-8Q6cJWaEs2xQUoGeK-msA8,813
|
|
377
|
+
anthropic/types/beta/skills/version_create_response.py,sha256=h_88pBqDHL-SYefLfx-ZA9i0RVWylO3E6uFZjSrWb8I,1187
|
|
378
|
+
anthropic/types/beta/skills/version_delete_response.py,sha256=_sJ892AuqEtAZ6g5w_r7AmA8N07FfhnLYM4v-jFNXtM,465
|
|
379
|
+
anthropic/types/beta/skills/version_list_params.py,sha256=7ybJm6AoOfrRE22qEF3GaBdDvkpTal1DoywiMN0y8QM,773
|
|
380
|
+
anthropic/types/beta/skills/version_list_response.py,sha256=S2ifcSXltFr4yJzhCEtuQAQtQ0sMycTuv1djhRId5n4,1183
|
|
381
|
+
anthropic/types/beta/skills/version_retrieve_response.py,sha256=1cfKkqynLN5Cy2RpUXdI-tlSZT3NK4e-xIUd4jUwEEo,1191
|
|
362
382
|
anthropic/types/messages/__init__.py,sha256=rL0U5ew9nqZzJRMked2CdI-UVIauM0cAx8O9a2RF5qo,1076
|
|
363
|
-
anthropic/types/messages/batch_create_params.py,sha256=
|
|
383
|
+
anthropic/types/messages/batch_create_params.py,sha256=PoXSHIY3CkcXXIaHV4ultrEf3fHD7yrtwtDfkOpIHyU,1069
|
|
364
384
|
anthropic/types/messages/batch_list_params.py,sha256=uuyRsq3a2qb89vESjKuvz7l6bkVewfQSJsVzWp8lKrI,691
|
|
365
385
|
anthropic/types/messages/deleted_message_batch.py,sha256=f5CDJzj4UEsRAy9SkYivpMuz-E5lpfoLHTl8mLeThAg,429
|
|
366
386
|
anthropic/types/messages/message_batch.py,sha256=2Oxp1wiOkp22w_UvIkBL4cgwH-4IkZcAx7MpN-ycYGg,2415
|
|
@@ -383,7 +403,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
|
|
|
383
403
|
anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
|
|
384
404
|
anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
|
|
385
405
|
anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
|
|
386
|
-
anthropic-0.
|
|
387
|
-
anthropic-0.
|
|
388
|
-
anthropic-0.
|
|
389
|
-
anthropic-0.
|
|
406
|
+
anthropic-0.71.0.dist-info/METADATA,sha256=tRlefsrkv7BRH_gbZiMOs6WmAqc4vMRaGT4XUoO-6kw,28564
|
|
407
|
+
anthropic-0.71.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
408
|
+
anthropic-0.71.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
|
|
409
|
+
anthropic-0.71.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|