anthropic 0.68.2__py3-none-any.whl → 0.69.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.
Files changed (39) hide show
  1. anthropic/_version.py +1 -1
  2. anthropic/lib/streaming/_beta_messages.py +1 -0
  3. anthropic/lib/tools/__init__.py +7 -0
  4. anthropic/lib/tools/_beta_builtin_memory_tool.py +245 -0
  5. anthropic/lib/tools/_beta_functions.py +30 -0
  6. anthropic/lib/tools/_beta_runner.py +18 -6
  7. anthropic/resources/beta/messages/messages.py +55 -11
  8. anthropic/types/beta/__init__.py +35 -0
  9. anthropic/types/beta/beta_clear_tool_uses_20250919_edit_param.py +38 -0
  10. anthropic/types/beta/beta_clear_tool_uses_20250919_edit_response.py +18 -0
  11. anthropic/types/beta/beta_context_management_config_param.py +15 -0
  12. anthropic/types/beta/beta_context_management_response.py +13 -0
  13. anthropic/types/beta/beta_count_tokens_context_management_response.py +10 -0
  14. anthropic/types/beta/beta_input_tokens_clear_at_least_param.py +13 -0
  15. anthropic/types/beta/beta_input_tokens_trigger_param.py +13 -0
  16. anthropic/types/beta/beta_memory_tool_20250818_command.py +26 -0
  17. anthropic/types/beta/beta_memory_tool_20250818_create_command.py +18 -0
  18. anthropic/types/beta/beta_memory_tool_20250818_delete_command.py +15 -0
  19. anthropic/types/beta/beta_memory_tool_20250818_insert_command.py +21 -0
  20. anthropic/types/beta/beta_memory_tool_20250818_param.py +23 -0
  21. anthropic/types/beta/beta_memory_tool_20250818_rename_command.py +18 -0
  22. anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py +21 -0
  23. anthropic/types/beta/beta_memory_tool_20250818_view_command.py +19 -0
  24. anthropic/types/beta/beta_message.py +4 -0
  25. anthropic/types/beta/beta_message_tokens_count.py +6 -0
  26. anthropic/types/beta/beta_raw_message_delta_event.py +4 -0
  27. anthropic/types/beta/beta_stop_reason.py +3 -1
  28. anthropic/types/beta/beta_tool_union_param.py +2 -0
  29. anthropic/types/beta/beta_tool_uses_keep_param.py +13 -0
  30. anthropic/types/beta/beta_tool_uses_trigger_param.py +13 -0
  31. anthropic/types/beta/message_count_tokens_params.py +7 -1
  32. anthropic/types/beta/message_create_params.py +4 -0
  33. anthropic/types/model.py +2 -0
  34. anthropic/types/model_param.py +2 -0
  35. anthropic/types/stop_reason.py +3 -1
  36. {anthropic-0.68.2.dist-info → anthropic-0.69.0.dist-info}/METADATA +19 -19
  37. {anthropic-0.68.2.dist-info → anthropic-0.69.0.dist-info}/RECORD +39 -21
  38. {anthropic-0.68.2.dist-info → anthropic-0.69.0.dist-info}/WHEEL +0 -0
  39. {anthropic-0.68.2.dist-info → anthropic-0.69.0.dist-info}/licenses/LICENSE +0 -0
@@ -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 Optional
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ from .beta_cache_control_ephemeral_param import BetaCacheControlEphemeralParam
9
+
10
+ __all__ = ["BetaMemoryTool20250818Param"]
11
+
12
+
13
+ class BetaMemoryTool20250818Param(TypedDict, total=False):
14
+ name: Required[Literal["memory"]]
15
+ """Name of the tool.
16
+
17
+ This is how the tool will be called by the model and in `tool_use` blocks.
18
+ """
19
+
20
+ type: Required[Literal["memory_20250818"]]
21
+
22
+ cache_control: Optional[BetaCacheControlEphemeralParam]
23
+ """Create a cache control breakpoint at this content block."""
@@ -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__ = ["BetaMemoryTool20250818RenameCommand"]
8
+
9
+
10
+ class BetaMemoryTool20250818RenameCommand(BaseModel):
11
+ command: Literal["rename"]
12
+ """Command type identifier"""
13
+
14
+ new_path: str
15
+ """New path for the file or directory"""
16
+
17
+ old_path: str
18
+ """Current path of the file or directory"""
@@ -0,0 +1,21 @@
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__ = ["BetaMemoryTool20250818StrReplaceCommand"]
8
+
9
+
10
+ class BetaMemoryTool20250818StrReplaceCommand(BaseModel):
11
+ command: Literal["str_replace"]
12
+ """Command type identifier"""
13
+
14
+ new_str: str
15
+ """Text to replace with"""
16
+
17
+ old_str: str
18
+ """Text to search for and replace"""
19
+
20
+ path: str
21
+ """Path to the file where text should be replaced"""
@@ -0,0 +1,19 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+ from typing_extensions import Literal
5
+
6
+ from ..._models import BaseModel
7
+
8
+ __all__ = ["BetaMemoryTool20250818ViewCommand"]
9
+
10
+
11
+ class BetaMemoryTool20250818ViewCommand(BaseModel):
12
+ command: Literal["view"]
13
+ """Command type identifier"""
14
+
15
+ path: str
16
+ """Path to directory or file to view"""
17
+
18
+ view_range: Optional[List[int]] = None
19
+ """Optional line range for viewing specific lines"""
@@ -9,6 +9,7 @@ from .beta_usage import BetaUsage
9
9
  from .beta_container import BetaContainer
10
10
  from .beta_stop_reason import BetaStopReason
11
11
  from .beta_content_block import BetaContentBlock, BetaContentBlock as BetaContentBlock
12
+ from .beta_context_management_response import BetaContextManagementResponse
12
13
 
13
14
  __all__ = ["BetaMessage"]
14
15
 
@@ -61,6 +62,9 @@ class BetaMessage(BaseModel):
61
62
  ```
62
63
  """
63
64
 
65
+ context_management: Optional[BetaContextManagementResponse] = None
66
+ """Information about context management operations applied during the request."""
67
+
64
68
  model: Model
65
69
  """
66
70
  The model that will complete your prompt.\n\nSee
@@ -1,11 +1,17 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from typing import Optional
4
+
3
5
  from ..._models import BaseModel
6
+ from .beta_count_tokens_context_management_response import BetaCountTokensContextManagementResponse
4
7
 
5
8
  __all__ = ["BetaMessageTokensCount"]
6
9
 
7
10
 
8
11
  class BetaMessageTokensCount(BaseModel):
12
+ context_management: Optional[BetaCountTokensContextManagementResponse] = None
13
+ """Information about context management applied to the message."""
14
+
9
15
  input_tokens: int
10
16
  """
11
17
  The total number of tokens across the provided list of messages, system prompt,
@@ -7,6 +7,7 @@ from ..._models import BaseModel
7
7
  from .beta_container import BetaContainer
8
8
  from .beta_stop_reason import BetaStopReason
9
9
  from .beta_message_delta_usage import BetaMessageDeltaUsage
10
+ from .beta_context_management_response import BetaContextManagementResponse
10
11
 
11
12
  __all__ = ["BetaRawMessageDeltaEvent", "Delta"]
12
13
 
@@ -24,6 +25,9 @@ class Delta(BaseModel):
24
25
 
25
26
 
26
27
  class BetaRawMessageDeltaEvent(BaseModel):
28
+ context_management: Optional[BetaContextManagementResponse] = None
29
+ """Information about context management operations applied during the request."""
30
+
27
31
  delta: Delta
28
32
 
29
33
  type: Literal["message_delta"]
@@ -4,4 +4,6 @@ from typing_extensions import Literal, TypeAlias
4
4
 
5
5
  __all__ = ["BetaStopReason"]
6
6
 
7
- BetaStopReason: TypeAlias = Literal["end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal"]
7
+ BetaStopReason: TypeAlias = Literal[
8
+ "end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal", "model_context_window_exceeded"
9
+ ]
@@ -8,6 +8,7 @@ from typing_extensions import TypeAlias
8
8
  from .beta_tool_param import BetaToolParam
9
9
  from .beta_tool_bash_20241022_param import BetaToolBash20241022Param
10
10
  from .beta_tool_bash_20250124_param import BetaToolBash20250124Param
11
+ from .beta_memory_tool_20250818_param import BetaMemoryTool20250818Param
11
12
  from .beta_web_fetch_tool_20250910_param import BetaWebFetchTool20250910Param
12
13
  from .beta_web_search_tool_20250305_param import BetaWebSearchTool20250305Param
13
14
  from .beta_tool_text_editor_20241022_param import BetaToolTextEditor20241022Param
@@ -28,6 +29,7 @@ BetaToolUnionParam: TypeAlias = Union[
28
29
  BetaCodeExecutionTool20250522Param,
29
30
  BetaCodeExecutionTool20250825Param,
30
31
  BetaToolComputerUse20241022Param,
32
+ BetaMemoryTool20250818Param,
31
33
  BetaToolComputerUse20250124Param,
32
34
  BetaToolTextEditor20241022Param,
33
35
  BetaToolTextEditor20250124Param,
@@ -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__ = ["BetaToolUsesKeepParam"]
8
+
9
+
10
+ class BetaToolUsesKeepParam(TypedDict, total=False):
11
+ type: Required[Literal["tool_uses"]]
12
+
13
+ value: Required[int]
@@ -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__ = ["BetaToolUsesTriggerParam"]
8
+
9
+
10
+ class BetaToolUsesTriggerParam(TypedDict, total=False):
11
+ type: Required[Literal["tool_uses"]]
12
+
13
+ value: Required[int]
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Union, Iterable
5
+ from typing import List, Union, Iterable, Optional
6
6
  from typing_extensions import Required, Annotated, TypeAlias, TypedDict
7
7
 
8
8
  from ..._utils import PropertyInfo
@@ -15,8 +15,10 @@ from .beta_tool_choice_param import BetaToolChoiceParam
15
15
  from .beta_thinking_config_param import BetaThinkingConfigParam
16
16
  from .beta_tool_bash_20241022_param import BetaToolBash20241022Param
17
17
  from .beta_tool_bash_20250124_param import BetaToolBash20250124Param
18
+ from .beta_memory_tool_20250818_param import BetaMemoryTool20250818Param
18
19
  from .beta_web_fetch_tool_20250910_param import BetaWebFetchTool20250910Param
19
20
  from .beta_web_search_tool_20250305_param import BetaWebSearchTool20250305Param
21
+ from .beta_context_management_config_param import BetaContextManagementConfigParam
20
22
  from .beta_tool_text_editor_20241022_param import BetaToolTextEditor20241022Param
21
23
  from .beta_tool_text_editor_20250124_param import BetaToolTextEditor20250124Param
22
24
  from .beta_tool_text_editor_20250429_param import BetaToolTextEditor20250429Param
@@ -106,6 +108,9 @@ class MessageCountTokensParams(TypedDict, total=False):
106
108
  details and options.
107
109
  """
108
110
 
111
+ context_management: Optional[BetaContextManagementConfigParam]
112
+ """Configuration for context management operations."""
113
+
109
114
  mcp_servers: Iterable[BetaRequestMCPServerURLDefinitionParam]
110
115
  """MCP servers to be utilized in this request"""
111
116
 
@@ -225,6 +230,7 @@ Tool: TypeAlias = Union[
225
230
  BetaCodeExecutionTool20250522Param,
226
231
  BetaCodeExecutionTool20250825Param,
227
232
  BetaToolComputerUse20241022Param,
233
+ BetaMemoryTool20250818Param,
228
234
  BetaToolComputerUse20250124Param,
229
235
  BetaToolTextEditor20241022Param,
230
236
  BetaToolTextEditor20250124Param,
@@ -15,6 +15,7 @@ from .beta_text_block_param import BetaTextBlockParam
15
15
  from .beta_tool_union_param import BetaToolUnionParam
16
16
  from .beta_tool_choice_param import BetaToolChoiceParam
17
17
  from .beta_thinking_config_param import BetaThinkingConfigParam
18
+ from .beta_context_management_config_param import BetaContextManagementConfigParam
18
19
  from .beta_request_mcp_server_url_definition_param import BetaRequestMCPServerURLDefinitionParam
19
20
 
20
21
  __all__ = ["MessageCreateParamsBase", "MessageCreateParamsNonStreaming", "MessageCreateParamsStreaming"]
@@ -109,6 +110,9 @@ class MessageCreateParamsBase(TypedDict, total=False):
109
110
  container: Optional[str]
110
111
  """Container identifier for reuse across requests."""
111
112
 
113
+ context_management: Optional[BetaContextManagementConfigParam]
114
+ """Configuration for context management operations."""
115
+
112
116
  mcp_servers: Iterable[BetaRequestMCPServerURLDefinitionParam]
113
117
  """MCP servers to be utilized in this request"""
114
118
 
anthropic/types/model.py CHANGED
@@ -14,6 +14,8 @@ Model: TypeAlias = Union[
14
14
  "claude-sonnet-4-20250514",
15
15
  "claude-sonnet-4-0",
16
16
  "claude-4-sonnet-20250514",
17
+ "claude-sonnet-4-5",
18
+ "claude-sonnet-4-5-20250929",
17
19
  "claude-3-5-sonnet-latest",
18
20
  "claude-3-5-sonnet-20241022",
19
21
  "claude-3-5-sonnet-20240620",
@@ -16,6 +16,8 @@ ModelParam: TypeAlias = Union[
16
16
  "claude-sonnet-4-20250514",
17
17
  "claude-sonnet-4-0",
18
18
  "claude-4-sonnet-20250514",
19
+ "claude-sonnet-4-5",
20
+ "claude-sonnet-4-5-20250929",
19
21
  "claude-3-5-sonnet-latest",
20
22
  "claude-3-5-sonnet-20241022",
21
23
  "claude-3-5-sonnet-20240620",
@@ -4,4 +4,6 @@ from typing_extensions import Literal, TypeAlias
4
4
 
5
5
  __all__ = ["StopReason"]
6
6
 
7
- StopReason: TypeAlias = Literal["end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal"]
7
+ StopReason: TypeAlias = Literal[
8
+ "end_turn", "max_tokens", "stop_sequence", "tool_use", "pause_turn", "refusal", "model_context_window_exceeded"
9
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.68.2
3
+ Version: 0.69.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
@@ -80,7 +80,7 @@ message = client.messages.create(
80
80
  "content": "Hello, Claude",
81
81
  }
82
82
  ],
83
- model="claude-sonnet-4-20250514",
83
+ model="claude-sonnet-4-5-20250929",
84
84
  )
85
85
  print(message.content)
86
86
  ```
@@ -113,7 +113,7 @@ async def main() -> None:
113
113
  "content": "Hello, Claude",
114
114
  }
115
115
  ],
116
- model="claude-sonnet-4-20250514",
116
+ model="claude-sonnet-4-5-20250929",
117
117
  )
118
118
  print(message.content)
119
119
 
@@ -155,7 +155,7 @@ async def main() -> None:
155
155
  "content": "Hello, Claude",
156
156
  }
157
157
  ],
158
- model="claude-sonnet-4-20250514",
158
+ model="claude-sonnet-4-5-20250929",
159
159
  )
160
160
  print(message.content)
161
161
 
@@ -180,7 +180,7 @@ stream = client.messages.create(
180
180
  "content": "Hello, Claude",
181
181
  }
182
182
  ],
183
- model="claude-sonnet-4-20250514",
183
+ model="claude-sonnet-4-5-20250929",
184
184
  stream=True,
185
185
  )
186
186
  for event in stream:
@@ -202,7 +202,7 @@ stream = await client.messages.create(
202
202
  "content": "Hello, Claude",
203
203
  }
204
204
  ],
205
- model="claude-sonnet-4-20250514",
205
+ model="claude-sonnet-4-5-20250929",
206
206
  stream=True,
207
207
  )
208
208
  async for event in stream:
@@ -244,7 +244,7 @@ def get_weather(location: str) -> str:
244
244
 
245
245
  runner = client.beta.messages.tool_runner(
246
246
  max_tokens=1024,
247
- model="claude-sonnet-4-20250514",
247
+ model="claude-sonnet-4-5-20250929",
248
248
  tools=[get_weather],
249
249
  messages=[
250
250
  {"role": "user", "content": "What is the weather in SF?"},
@@ -277,7 +277,7 @@ async def main() -> None:
277
277
  "content": "Say hello there!",
278
278
  }
279
279
  ],
280
- model="claude-sonnet-4-20250514",
280
+ model="claude-sonnet-4-5-20250929",
281
281
  ) as stream:
282
282
  async for text in stream.text_stream:
283
283
  print(text, end="", flush=True)
@@ -299,7 +299,7 @@ To get the token count for a message without creating it you can use the `client
299
299
 
300
300
  ```py
301
301
  count = client.messages.count_tokens(
302
- model="claude-sonnet-4-20250514",
302
+ model="claude-sonnet-4-5-20250929",
303
303
  messages=[
304
304
  {"role": "user", "content": "Hello, world"}
305
305
  ]
@@ -329,7 +329,7 @@ await client.messages.batches.create(
329
329
  {
330
330
  "custom_id": "my-first-request",
331
331
  "params": {
332
- "model": "claude-sonnet-4-20250514",
332
+ "model": "claude-sonnet-4-5-20250929",
333
333
  "max_tokens": 1024,
334
334
  "messages": [{"role": "user", "content": "Hello, world"}],
335
335
  },
@@ -337,7 +337,7 @@ await client.messages.batches.create(
337
337
  {
338
338
  "custom_id": "my-second-request",
339
339
  "params": {
340
- "model": "claude-sonnet-4-20250514",
340
+ "model": "claude-sonnet-4-5-20250929",
341
341
  "max_tokens": 1024,
342
342
  "messages": [{"role": "user", "content": "Hi again, friend"}],
343
343
  },
@@ -380,7 +380,7 @@ message = client.messages.create(
380
380
  "content": "Hello!",
381
381
  }
382
382
  ],
383
- model="anthropic.claude-sonnet-4-20250514-v1:0",
383
+ model="anthropic.claude-sonnet-4-5-20250929-v1:0",
384
384
  )
385
385
  print(message)
386
386
  ```
@@ -522,7 +522,7 @@ message = client.messages.create(
522
522
  "role": "user",
523
523
  }
524
524
  ],
525
- model="claude-sonnet-4-20250514",
525
+ model="claude-sonnet-4-5-20250929",
526
526
  metadata={},
527
527
  )
528
528
  print(message.metadata)
@@ -569,7 +569,7 @@ try:
569
569
  "content": "Hello, Claude",
570
570
  }
571
571
  ],
572
- model="claude-sonnet-4-20250514",
572
+ model="claude-sonnet-4-5-20250929",
573
573
  )
574
574
  except anthropic.APIConnectionError as e:
575
575
  print("The server could not be reached")
@@ -610,7 +610,7 @@ message = client.messages.create(
610
610
  "content": "Hello, Claude",
611
611
  }
612
612
  ],
613
- model="claude-sonnet-4-20250514",
613
+ model="claude-sonnet-4-5-20250929",
614
614
  )
615
615
  print(message._request_id) # req_018EeWyXxfu5pfWkrYcMdjWG
616
616
  ```
@@ -645,7 +645,7 @@ client.with_options(max_retries=5).messages.create(
645
645
  "content": "Hello, Claude",
646
646
  }
647
647
  ],
648
- model="claude-sonnet-4-20250514",
648
+ model="claude-sonnet-4-5-20250929",
649
649
  )
650
650
  ```
651
651
 
@@ -677,7 +677,7 @@ client.with_options(timeout=5.0).messages.create(
677
677
  "content": "Hello, Claude",
678
678
  }
679
679
  ],
680
- model="claude-sonnet-4-20250514",
680
+ model="claude-sonnet-4-5-20250929",
681
681
  )
682
682
  ```
683
683
 
@@ -760,7 +760,7 @@ response = client.messages.with_raw_response.create(
760
760
  "role": "user",
761
761
  "content": "Hello, Claude",
762
762
  }],
763
- model="claude-sonnet-4-20250514",
763
+ model="claude-sonnet-4-5-20250929",
764
764
  )
765
765
  print(response.headers.get('X-My-Header'))
766
766
 
@@ -794,7 +794,7 @@ with client.messages.with_streaming_response.create(
794
794
  "content": "Hello, Claude",
795
795
  }
796
796
  ],
797
- model="claude-sonnet-4-20250514",
797
+ model="claude-sonnet-4-5-20250929",
798
798
  ) as response:
799
799
  print(response.headers.get("X-My-Header"))
800
800
 
@@ -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=9udM7HEFZ7srRE5B7uNnWX1bEyASWd5LWenCCrRSiPw,162
15
+ anthropic/_version.py,sha256=VFFOB7_1BDmd8ACcXK9HVqv84Wfrui1XDwO3_vsYvXs,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
@@ -42,13 +42,14 @@ anthropic/lib/bedrock/_client.py,sha256=kZDEdx07b4rXG81evFsWB5TgOqhRwsYoCBJTEkWz
42
42
  anthropic/lib/bedrock/_stream.py,sha256=wCS-1otwfIIVbfG3TFFKxTD-antJiTmprW6eAAGTCDA,871
43
43
  anthropic/lib/bedrock/_stream_decoder.py,sha256=gTlsTn0s6iVOL4Smp_inhDUBcOZuCgGgJib7fORbQWM,2551
44
44
  anthropic/lib/streaming/__init__.py,sha256=vV3U4VttIgWc3eNCSbdt1U1_pUnpi5pPJzSYcXX5zMk,980
45
- anthropic/lib/streaming/_beta_messages.py,sha256=swDeDwTbhx33G_YjwTkusbij6CerLuWAT67XWPe9Z3k,18259
45
+ anthropic/lib/streaming/_beta_messages.py,sha256=9AW3g-MeiD-8-wUZsmbHQVovcIngda6BwUNAm9NANxQ,18330
46
46
  anthropic/lib/streaming/_beta_types.py,sha256=fny8XN85afEG6of84YuaScr3U8UeMCJxqyfuTePHNbM,2131
47
47
  anthropic/lib/streaming/_messages.py,sha256=OSV9sjb8MLThSywEFXQV9OchcNXAE2KxDacVpJbkNRM,16958
48
48
  anthropic/lib/streaming/_types.py,sha256=CrR4948IWgUF7L9O0ase2QwbpiQ1JeiYXrRyVi74-Bw,2086
49
- anthropic/lib/tools/__init__.py,sha256=ui3gBw2-vQsl_4pKjf3O5kfUYpGATjQ6H4MPLopy0h4,525
50
- anthropic/lib/tools/_beta_functions.py,sha256=eje6jXzDZa0azRevFF6TP_YQBo7FX3DvY4wRT5nUv7c,9738
51
- anthropic/lib/tools/_beta_runner.py,sha256=rwmV1mU2I1riTexNTZj0GWR13Sam7n486W1K1fu4SIU,15469
49
+ anthropic/lib/tools/__init__.py,sha256=8JgDqt6ti7klw9JQ78UjFACMc8GmGi-eFWu6xhbZ5MQ,811
50
+ anthropic/lib/tools/_beta_builtin_memory_tool.py,sha256=FjMyWAYHR4da2jhz2EyUt_0G5BoUXW-iHnwlCprFbqc,9123
51
+ anthropic/lib/tools/_beta_functions.py,sha256=6k8f-v2rme0WZwIuS4IryzB1xEPX_S-Y1eIuQq04RI4,10547
52
+ anthropic/lib/tools/_beta_runner.py,sha256=RPvPo2n7bvZyDPjVDgsySRwXbYwcATqnzYFs4swINDk,15654
52
53
  anthropic/lib/vertex/__init__.py,sha256=A8vuK1qVPtmKr1_LQgPuDRVA6I4xm_ye2aPdAa4yGsI,102
53
54
  anthropic/lib/vertex/_auth.py,sha256=Kyt_hbUc-DPlkvds4__OLR8FLPpoDas6bXhZTECxO3Y,1644
54
55
  anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4,3323
@@ -63,7 +64,7 @@ anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7t
63
64
  anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
64
65
  anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
65
66
  anthropic/resources/beta/messages/batches.py,sha256=O8OfPkfqotwANicpsYrOiqlA2O7G-CaeDK8BpDJRRhU,35840
66
- anthropic/resources/beta/messages/messages.py,sha256=xAH4y8p0q6b7O1eNgrsjozXI1KlO1Gqz4uFCFAz7CiQ,131087
67
+ anthropic/resources/beta/messages/messages.py,sha256=qGUBzkFkGxLKtgFWO0H1eyNc2ZxHDgbabM3aE2nE5y0,134020
67
68
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
68
69
  anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
69
70
  anthropic/resources/messages/messages.py,sha256=cQJUX9hEocYIFyJaGBXnFnTBsZLu0q1MnwR6FC6Qtm4,108828
@@ -120,10 +121,10 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
120
121
  anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
121
122
  anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
122
123
  anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
123
- anthropic/types/model.py,sha256=V888kWy7bfcTSpuM5pr60ij6br5xH5ImHQvxduzvrR0,831
124
+ anthropic/types/model.py,sha256=cMdb4M_DJ8xLXCQ07130H5fbjB0owqE-bdBlVyfdlRw,898
124
125
  anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
125
126
  anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
126
- anthropic/types/model_param.py,sha256=a9Fju4LrWXtBVVw_aNtBC75T4X5QrCffr7701MK_p_A,877
127
+ anthropic/types/model_param.py,sha256=Y10mrEcm9Qdl_dL9DBdAjqr9iZs-litb7gkBM325NUc,944
127
128
  anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
128
129
  anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
129
130
  anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
@@ -140,7 +141,7 @@ anthropic/types/server_tool_usage.py,sha256=nccmvOnXVirtx_ORf4xJTBDDTNPCk_0F3ObE
140
141
  anthropic/types/server_tool_use_block.py,sha256=oim9TZxqdRaR3GzQQpc9y8wPlIFMGVhOTIAT2Vn9u6g,333
141
142
  anthropic/types/server_tool_use_block_param.py,sha256=u6umSKDkkE5p2iFM3AaWs-mlfzTh7WxYU2rpT8vLJkE,643
142
143
  anthropic/types/signature_delta.py,sha256=1e7MwUUU2j5oOie79x-5QU4-Fi1WXccDqgIMnvxfXTQ,280
143
- anthropic/types/stop_reason.py,sha256=LZTfwN184HpIH4xNBwgNZ44EskkBDIvUWScEgaJWSd0,275
144
+ anthropic/types/stop_reason.py,sha256=9xphAX-puiTZMgDw20OTfG0g3rg3L0g34RCD4VpmreI,314
144
145
  anthropic/types/text_block.py,sha256=otDts8sbTaDw9kIsvyqMHAxE-hxJv4F4HK4q7QkCmDo,662
145
146
  anthropic/types/text_block_param.py,sha256=oz75dBBWudPw3IBl-Xpu4sLP4OdxQmrz8qbQc6pMoCw,659
146
147
  anthropic/types/text_citation.py,sha256=otKNuFral4D_25v98K5NuGD0pDWKAyHTW5uvr90Wp5o,850
@@ -178,7 +179,7 @@ anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTd
178
179
  anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
179
180
  anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
180
181
  anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
181
- anthropic/types/beta/__init__.py,sha256=5d89bG-xT9pE6MFpRIAN1Xp35vMubcY2OGCd1MEQqz4,16262
182
+ anthropic/types/beta/__init__.py,sha256=WbX63MD3fiLpoda78M4bGnkVaITsK1k-_8ud_n9k_Tc,18379
182
183
  anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
183
184
  anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
184
185
  anthropic/types/beta/beta_base64_pdf_source.py,sha256=RbkrF6vfc4tMgntlk3U7jmrdpa876HxO8iDa28szsKA,321
@@ -206,6 +207,8 @@ anthropic/types/beta/beta_citation_web_search_result_location_param.py,sha256=4R
206
207
  anthropic/types/beta/beta_citations_config_param.py,sha256=3mv2HzC7BII1OYox10dhjtgxiRmucT5eNYRLxLoYm7E,279
207
208
  anthropic/types/beta/beta_citations_delta.py,sha256=Fjk3Sv5fVuZ90q4tPANkELaiWjLrTxhu2xb8ipitiH4,1069
208
209
  anthropic/types/beta/beta_citations_web_search_result_location.py,sha256=m03Z39Tc2_6Kcx-qg0_odmWgMZbdNcUsMGFOPrYrOIQ,438
210
+ anthropic/types/beta/beta_clear_tool_uses_20250919_edit_param.py,sha256=_8AVMNiDDw1J0Ojkzk3gi1Feyu6Z-zqGrR_0mluV2lE,1485
211
+ anthropic/types/beta/beta_clear_tool_uses_20250919_edit_response.py,sha256=mbHO2KfaTVYREJBkxhPj4vEFtZyFtwlezKObsv7Fe6E,534
209
212
  anthropic/types/beta/beta_code_execution_output_block.py,sha256=OpNDX-uckWDLBg70X1gKYNk2LAj6Re3UCOgOsnxJY1I,313
210
213
  anthropic/types/beta/beta_code_execution_output_block_param.py,sha256=EOtPBBkd-AJSbmHg_RDUY01rQLH90Q1_NZjX5CHFAeo,379
211
214
  anthropic/types/beta/beta_code_execution_result_block.py,sha256=9xSRmN5jLtLU7i8OykIZ2avIyaQYN-AaruG6iH2-H80,499
@@ -226,18 +229,31 @@ anthropic/types/beta/beta_content_block.py,sha256=vmZXOq7Frx8xAYVV5eDC9FbNq-wyL8
226
229
  anthropic/types/beta/beta_content_block_param.py,sha256=87vnYL2-j7vOtT-dldIn0XNdVkhwWY_R_u64cmGZaQc,2260
227
230
  anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
228
231
  anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
232
+ anthropic/types/beta/beta_context_management_config_param.py,sha256=oewtxyhe0E6GvMbsg8qMlrLdrFO2RMu2KDa0JaDSz_4,503
233
+ anthropic/types/beta/beta_context_management_response.py,sha256=J3D97XX_-zMeCtKPEODja43EmLHIPAGoBHVdu_-eJRQ,460
234
+ anthropic/types/beta/beta_count_tokens_context_management_response.py,sha256=efL0nsrOlA7KTIQ-M5IiXRmbmb6q-dakLp3oNnEh5G8,341
229
235
  anthropic/types/beta/beta_document_block.py,sha256=lehaAYYdGHJay8F_J-GfMLOYWAe0G8gVWfeixA5XH2s,834
230
236
  anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
231
237
  anthropic/types/beta/beta_file_image_source_param.py,sha256=5ogaJ3H_NNz2M1Qa5XWyB2uUf-0HHHLkwYXJuA3kOwQ,344
232
238
  anthropic/types/beta/beta_image_block_param.py,sha256=CkS_-Ft9RuiIEdsUNXUFMSphVYD2RCxJGSU_2C4ZGyk,910
233
239
  anthropic/types/beta/beta_input_json_delta.py,sha256=MPlt9LmfuwmpWryQagjkkVHHZRfZzIJZq3a6JWi7auE,293
240
+ anthropic/types/beta/beta_input_tokens_clear_at_least_param.py,sha256=9VMW4rN_ZeSQp5ianz-815vc_h23XjC-FI6ZICsC7d8,366
241
+ anthropic/types/beta/beta_input_tokens_trigger_param.py,sha256=_7MSRq8ZykSOZxxr2upnPqpSZEQ42_m53wHhcqiQ2rE,356
234
242
  anthropic/types/beta/beta_mcp_tool_result_block.py,sha256=mqx1WHh13wYoGpf5PnG8dgGsihq3qd9Pg6t9nolIwGI,439
235
243
  anthropic/types/beta/beta_mcp_tool_use_block.py,sha256=gvxck6vBcZMXaeyKWu-iXw0NCY7wuaE32tFPzEIkJks,409
236
244
  anthropic/types/beta/beta_mcp_tool_use_block_param.py,sha256=7X8xqpJiXdfFd2--LVBaXGXS7A-5buKDAfhQJJY5klU,706
237
- anthropic/types/beta/beta_message.py,sha256=M7ICZ38_ebOBNvWrFr5gpojBOVcNjUXt3HzbdBO7IvU,3782
245
+ anthropic/types/beta/beta_memory_tool_20250818_command.py,sha256=It-xNhxO4M7DSqpczVfZq7mD2FPDZniHGUxCq9wSGGs,1179
246
+ anthropic/types/beta/beta_memory_tool_20250818_create_command.py,sha256=jmrc8aWVghMz5PRW7vo5LPp3GaUDZkl7Ir8rmqNVsHw,453
247
+ anthropic/types/beta/beta_memory_tool_20250818_delete_command.py,sha256=dRjSRkChmc6P_vIwIWlknVEXcXikM6EZjJxZgqfT-TA,396
248
+ anthropic/types/beta/beta_memory_tool_20250818_insert_command.py,sha256=AkchM3mjzYmLC9Os12l1g4NNIvO1Caf9FNk_1w-jIIc,546
249
+ anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=qL3iNL_Pk5NI4STT_1F8AemGcLh7aRhOWj02vDdfB4w,721
250
+ anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdurJEXwEdK54_Z-RjzAOMSvo8AeNo2KHD8vlgA,462
251
+ anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
252
+ anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
253
+ anthropic/types/beta/beta_message.py,sha256=LD-A9MkNHmbmjCz5-uN66De36AYLFhfv-2JjFL9QF84,4016
238
254
  anthropic/types/beta/beta_message_delta_usage.py,sha256=fXrjDgH46VN53jTfHzoBPavFWx4YgBMH1T1ni4f9D2w,838
239
255
  anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZkueSrU_Go3gUc,477
240
- anthropic/types/beta/beta_message_tokens_count.py,sha256=KFm3BISAW3trg014_5cKrkMJ_WRLs15yQFlCJle_Vf8,338
256
+ anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
241
257
  anthropic/types/beta/beta_metadata_param.py,sha256=julUtAFfgnCXSt0sN8qQ-_GuhJvpXbQyqlPhyzE8jmQ,602
242
258
  anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dtXFUPbuWqAA,655
243
259
  anthropic/types/beta/beta_plain_text_source.py,sha256=u3XpMPojTxn-_LvFdYYMLc_b8WI2ggIXdoZ4pDK4Q-Y,314
@@ -246,7 +262,7 @@ anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h
246
262
  anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
247
263
  anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=2UDrpyyC8V6DJADY1oI1P6kHzMS6drucGn05U96ZX3c,1950
248
264
  anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
249
- anthropic/types/beta/beta_raw_message_delta_event.py,sha256=o4gGROi2CmzPQhZ1ZVlXYQWWzDbg9YqbjgCv_Jdpat4,1505
265
+ anthropic/types/beta/beta_raw_message_delta_event.py,sha256=Nvk8zDgnljO6v7kpkZGK9FMnX8_2eFBAXeHmHDisnlM,1739
250
266
  anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
251
267
  anthropic/types/beta/beta_raw_message_stop_event.py,sha256=Xyo-UPOLgjOTCYA8kYZoK4cx_C_Jegd5MYVjf0C2-t8,276
252
268
  anthropic/types/beta/beta_raw_message_stream_event.py,sha256=8Aq-QAF0Fk6esNiI_L44Mbr9SMaIFqNfi8p2NF6aO80,999
@@ -261,7 +277,7 @@ anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFH
261
277
  anthropic/types/beta/beta_server_tool_use_block.py,sha256=w1TMUg0APiwSZqiUkXd137Fg1SGr9xIX90qvMrZF6Jg,426
262
278
  anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=yafWnsAG5jz7NzqcfWAnLtH86p-nNejxW1IUQmmnIJk,762
263
279
  anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
264
- anthropic/types/beta/beta_stop_reason.py,sha256=K128DdKu6vMjONi6uAqKpbdoOLqUYRoOapg8jZV0Z0E,283
280
+ anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
265
281
  anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
266
282
  anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
267
283
  anthropic/types/beta/beta_text_citation.py,sha256=Ia_-kJ48QQ4ZN5AeWbCSCzAFwNXjVM4LHf-5-jyBJog,921
@@ -298,9 +314,11 @@ anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=z4plQ-egA85e
298
314
  anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=PqRpXlK9TqHPOcF5SRkGSeWc793QMNUztuIQKoGHyoI,746
299
315
  anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=2skxGp7C7fwrecE2dS22FPRXhxRF8VMQS4K5cNT-fbA,755
300
316
  anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=Y9Kx_C2XZQ0BmXoOUEunVJeb7FnGTWH9egNc-S9lzqI,927
301
- anthropic/types/beta/beta_tool_union_param.py,sha256=wRhleqW64OX__NaNFroxejvPFnM4IoSNm8g9Oc2YhnA,1732
317
+ anthropic/types/beta/beta_tool_union_param.py,sha256=wt4nJAkJm0qPHOjpPMMJmePRfjxUcCLnqJwgihAgupY,1838
302
318
  anthropic/types/beta/beta_tool_use_block.py,sha256=y1Y9ovht2t-BlJDqEOi_wk2b2XAIb2J_gkyIdzZM8fY,305
303
319
  anthropic/types/beta/beta_tool_use_block_param.py,sha256=eZvSxb6yvh_eLY0SSoN0pFSGGLxU4yJEv3nyMYZ7zBA,627
320
+ anthropic/types/beta/beta_tool_uses_keep_param.py,sha256=R9sHxEwQq33kSQEiIG_ONm92EUk0YFmKI039tkhl4vo,341
321
+ anthropic/types/beta/beta_tool_uses_trigger_param.py,sha256=PbTkerKGtnClYCrACGaodsTkHOSpTz801jp_PzvyBEI,347
304
322
  anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
305
323
  anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49uZz9DgR8mhxLCZT7RIVk,333
306
324
  anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
@@ -326,8 +344,8 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
326
344
  anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
327
345
  anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
328
346
  anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
329
- anthropic/types/beta/message_count_tokens_params.py,sha256=Uuom_SmOaDyoEv8QwFsc9av4oO9eOkKn2SfLGJDeMGY,8727
330
- anthropic/types/beta/message_create_params.py,sha256=aJy6wb5qCYhIfgFg9NQREQDxg8cwoOW5KAam6Vnawro,10821
347
+ anthropic/types/beta/message_count_tokens_params.py,sha256=ND8TF-yL19lNElPqlBRCvjRefnU-cJQ53f14rb7LRyc,9053
348
+ anthropic/types/beta/message_create_params.py,sha256=R42IWxBsOaPKbBvFjOncpykbNGuKUcs6JTcg5r4zm48,11031
331
349
  anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
332
350
  anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
333
351
  anthropic/types/beta/messages/batch_create_params.py,sha256=evapYsPHKVs2zrWZQpgVDpZIn2bMrk7Z7P03T8Go1c0,1336
@@ -365,7 +383,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
365
383
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
366
384
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
367
385
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
368
- anthropic-0.68.2.dist-info/METADATA,sha256=9lnZHJQ7eT1nA6BmHSobeE2mkXZGvnmqgPvIYIMvG3Q,28528
369
- anthropic-0.68.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
370
- anthropic-0.68.2.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
371
- anthropic-0.68.2.dist-info/RECORD,,
386
+ anthropic-0.69.0.dist-info/METADATA,sha256=46g3Ww5s1U-z4fThItBcdCb0fp53jkOlj5N_oKxloHg,28564
387
+ anthropic-0.69.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
388
+ anthropic-0.69.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
389
+ anthropic-0.69.0.dist-info/RECORD,,