anthropic 0.77.1__py3-none-any.whl → 0.78.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 (42) hide show
  1. anthropic/_version.py +1 -1
  2. anthropic/lib/streaming/_beta_messages.py +15 -0
  3. anthropic/lib/streaming/_beta_types.py +8 -0
  4. anthropic/resources/beta/messages/messages.py +110 -1
  5. anthropic/resources/messages/messages.py +76 -0
  6. anthropic/types/__init__.py +1 -0
  7. anthropic/types/beta/__init__.py +8 -0
  8. anthropic/types/beta/beta_compact_20260112_edit_param.py +27 -0
  9. anthropic/types/beta/beta_compaction_block.py +22 -0
  10. anthropic/types/beta/beta_compaction_block_param.py +29 -0
  11. anthropic/types/beta/beta_compaction_content_block_delta.py +14 -0
  12. anthropic/types/beta/beta_compaction_iteration_usage.py +31 -0
  13. anthropic/types/beta/beta_content_block.py +2 -0
  14. anthropic/types/beta/beta_content_block_param.py +2 -0
  15. anthropic/types/beta/beta_context_management_config_param.py +4 -1
  16. anthropic/types/beta/beta_iterations_usage.py +13 -0
  17. anthropic/types/beta/beta_message_delta_usage.py +12 -0
  18. anthropic/types/beta/beta_message_iteration_usage.py +31 -0
  19. anthropic/types/beta/beta_output_config_param.py +2 -7
  20. anthropic/types/beta/beta_raw_content_block_delta.py +9 -1
  21. anthropic/types/beta/beta_raw_content_block_start_event.py +2 -0
  22. anthropic/types/beta/beta_stop_reason.py +8 -1
  23. anthropic/types/beta/beta_thinking_config_adaptive_param.py +11 -0
  24. anthropic/types/beta/beta_thinking_config_param.py +4 -1
  25. anthropic/types/beta/beta_tool_param.py +10 -0
  26. anthropic/types/beta/beta_usage.py +15 -0
  27. anthropic/types/beta/message_create_params.py +6 -0
  28. anthropic/types/beta/messages/batch_create_params.py +1 -0
  29. anthropic/types/beta/parsed_beta_message.py +2 -0
  30. anthropic/types/message_create_params.py +7 -1
  31. anthropic/types/messages/batch_create_params.py +1 -0
  32. anthropic/types/model.py +1 -0
  33. anthropic/types/model_param.py +1 -0
  34. anthropic/types/output_config_param.py +4 -1
  35. anthropic/types/thinking_config_adaptive_param.py +11 -0
  36. anthropic/types/thinking_config_param.py +4 -1
  37. anthropic/types/tool_param.py +10 -0
  38. anthropic/types/usage.py +3 -0
  39. {anthropic-0.77.1.dist-info → anthropic-0.78.0.dist-info}/METADATA +2 -2
  40. {anthropic-0.77.1.dist-info → anthropic-0.78.0.dist-info}/RECORD +42 -33
  41. {anthropic-0.77.1.dist-info → anthropic-0.78.0.dist-info}/WHEEL +0 -0
  42. {anthropic-0.77.1.dist-info → anthropic-0.78.0.dist-info}/licenses/LICENSE +0 -0
@@ -6,8 +6,11 @@ from typing import Union
6
6
  from typing_extensions import TypeAlias
7
7
 
8
8
  from .beta_thinking_config_enabled_param import BetaThinkingConfigEnabledParam
9
+ from .beta_thinking_config_adaptive_param import BetaThinkingConfigAdaptiveParam
9
10
  from .beta_thinking_config_disabled_param import BetaThinkingConfigDisabledParam
10
11
 
11
12
  __all__ = ["BetaThinkingConfigParam"]
12
13
 
13
- BetaThinkingConfigParam: TypeAlias = Union[BetaThinkingConfigEnabledParam, BetaThinkingConfigDisabledParam]
14
+ BetaThinkingConfigParam: TypeAlias = Union[
15
+ BetaThinkingConfigEnabledParam, BetaThinkingConfigDisabledParam, BetaThinkingConfigAdaptiveParam
16
+ ]
@@ -61,6 +61,16 @@ class BetaToolParam(TypedDict, total=False):
61
61
  aspects of the tool input JSON schema.
62
62
  """
63
63
 
64
+ eager_input_streaming: Optional[bool]
65
+ """Enable eager input streaming for this tool.
66
+
67
+ When true, tool input parameters will be streamed incrementally as they are
68
+ generated, and types will be inferred on-the-fly rather than buffering the full
69
+ JSON output. When false, streaming is disabled for this tool even if the
70
+ fine-grained-tool-streaming beta is active. When null (default), uses the
71
+ default behavior based on beta headers.
72
+ """
73
+
64
74
  input_examples: Iterable[Dict[str, object]]
65
75
 
66
76
  strict: bool
@@ -5,6 +5,7 @@ from typing_extensions import Literal
5
5
 
6
6
  from ..._models import BaseModel
7
7
  from .beta_cache_creation import BetaCacheCreation
8
+ from .beta_iterations_usage import BetaIterationsUsage
8
9
  from .beta_server_tool_usage import BetaServerToolUsage
9
10
 
10
11
  __all__ = ["BetaUsage"]
@@ -20,9 +21,23 @@ class BetaUsage(BaseModel):
20
21
  cache_read_input_tokens: Optional[int] = None
21
22
  """The number of input tokens read from the cache."""
22
23
 
24
+ inference_geo: Optional[str] = None
25
+ """The geographic region where inference was performed for this request."""
26
+
23
27
  input_tokens: int
24
28
  """The number of input tokens which were used."""
25
29
 
30
+ iterations: Optional[BetaIterationsUsage] = None
31
+ """Per-iteration token usage breakdown.
32
+
33
+ Each entry represents one sampling iteration, with its own input/output token
34
+ counts and cache statistics. This allows you to:
35
+
36
+ - Determine which iterations exceeded long context thresholds (>=200k tokens)
37
+ - Calculate the true context window size from the last iteration
38
+ - Understand token accumulation across server-side tool use loops
39
+ """
40
+
26
41
  output_tokens: int
27
42
  """The number of output tokens which were used."""
28
43
 
@@ -127,6 +127,12 @@ class MessageCreateParamsBase(TypedDict, total=False):
127
127
  such as whether to clear function results or not.
128
128
  """
129
129
 
130
+ inference_geo: Optional[str]
131
+ """Specifies the geographic region for inference processing.
132
+
133
+ If not specified, the workspace's `default_inference_geo` is used.
134
+ """
135
+
130
136
  mcp_servers: Iterable[BetaRequestMCPServerURLDefinitionParam]
131
137
  """MCP servers to be utilized in this request"""
132
138
 
@@ -23,6 +23,7 @@ class BatchCreateParams(TypedDict, total=False):
23
23
  """Optional header to specify the beta version(s) you want to use."""
24
24
 
25
25
 
26
+
26
27
  class Request(TypedDict, total=False):
27
28
  custom_id: Required[str]
28
29
  """Developer-provided ID created for each request in a Message Batch.
@@ -8,6 +8,7 @@ from .beta_message import BetaMessage
8
8
  from .beta_text_block import BetaTextBlock
9
9
  from .beta_thinking_block import BetaThinkingBlock
10
10
  from .beta_tool_use_block import BetaToolUseBlock
11
+ from .beta_compaction_block import BetaCompactionBlock
11
12
  from .beta_mcp_tool_use_block import BetaMCPToolUseBlock
12
13
  from .beta_mcp_tool_result_block import BetaMCPToolResultBlock
13
14
  from .beta_server_tool_use_block import BetaServerToolUseBlock
@@ -49,6 +50,7 @@ ParsedBetaContentBlock: TypeAlias = Annotated[
49
50
  BetaMCPToolUseBlock,
50
51
  BetaMCPToolResultBlock,
51
52
  BetaContainerUploadBlock,
53
+ BetaCompactionBlock,
52
54
  ],
53
55
  PropertyInfo(discriminator="type"),
54
56
  ]
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Union, Iterable
5
+ from typing import Union, Iterable, Optional
6
6
  from typing_extensions import Literal, Required, TypeAlias, TypedDict
7
7
 
8
8
  from .._types import SequenceNotStr
@@ -116,6 +116,12 @@ class MessageCreateParamsBase(TypedDict, total=False):
116
116
  details and options.
117
117
  """
118
118
 
119
+ inference_geo: Optional[str]
120
+ """Specifies the geographic region for inference processing.
121
+
122
+ If not specified, the workspace's `default_inference_geo` is used.
123
+ """
124
+
119
125
  metadata: MetadataParam
120
126
  """An object describing metadata about the request."""
121
127
 
@@ -18,6 +18,7 @@ class BatchCreateParams(TypedDict, total=False):
18
18
  """
19
19
 
20
20
 
21
+
21
22
  class Request(TypedDict, total=False):
22
23
  custom_id: Required[str]
23
24
  """Developer-provided ID created for each request in a Message Batch.
anthropic/types/model.py CHANGED
@@ -7,6 +7,7 @@ __all__ = ["Model"]
7
7
 
8
8
  Model: TypeAlias = Union[
9
9
  Literal[
10
+ "claude-opus-4-6",
10
11
  "claude-opus-4-5-20251101",
11
12
  "claude-opus-4-5",
12
13
  "claude-3-7-sonnet-latest",
@@ -9,6 +9,7 @@ __all__ = ["ModelParam"]
9
9
 
10
10
  ModelParam: TypeAlias = Union[
11
11
  Literal[
12
+ "claude-opus-4-6",
12
13
  "claude-opus-4-5-20251101",
13
14
  "claude-opus-4-5",
14
15
  "claude-3-7-sonnet-latest",
@@ -3,7 +3,7 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from typing import Optional
6
- from typing_extensions import TypedDict
6
+ from typing_extensions import Literal, TypedDict
7
7
 
8
8
  from .json_output_format_param import JSONOutputFormatParam
9
9
 
@@ -11,6 +11,9 @@ __all__ = ["OutputConfigParam"]
11
11
 
12
12
 
13
13
  class OutputConfigParam(TypedDict, total=False):
14
+ effort: Optional[Literal["low", "medium", "high", "max"]]
15
+ """All possible effort levels."""
16
+
14
17
  format: Optional[JSONOutputFormatParam]
15
18
  """A schema to specify Claude's output format in responses.
16
19
 
@@ -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__ = ["ThinkingConfigAdaptiveParam"]
8
+
9
+
10
+ class ThinkingConfigAdaptiveParam(TypedDict, total=False):
11
+ type: Required[Literal["adaptive"]]
@@ -6,8 +6,11 @@ from typing import Union
6
6
  from typing_extensions import TypeAlias
7
7
 
8
8
  from .thinking_config_enabled_param import ThinkingConfigEnabledParam
9
+ from .thinking_config_adaptive_param import ThinkingConfigAdaptiveParam
9
10
  from .thinking_config_disabled_param import ThinkingConfigDisabledParam
10
11
 
11
12
  __all__ = ["ThinkingConfigParam"]
12
13
 
13
- ThinkingConfigParam: TypeAlias = Union[ThinkingConfigEnabledParam, ThinkingConfigDisabledParam]
14
+ ThinkingConfigParam: TypeAlias = Union[
15
+ ThinkingConfigEnabledParam, ThinkingConfigDisabledParam, ThinkingConfigAdaptiveParam
16
+ ]
@@ -56,6 +56,16 @@ class ToolParam(TypedDict, total=False):
56
56
  aspects of the tool input JSON schema.
57
57
  """
58
58
 
59
+ eager_input_streaming: Optional[bool]
60
+ """Enable eager input streaming for this tool.
61
+
62
+ When true, tool input parameters will be streamed incrementally as they are
63
+ generated, and types will be inferred on-the-fly rather than buffering the full
64
+ JSON output. When false, streaming is disabled for this tool even if the
65
+ fine-grained-tool-streaming beta is active. When null (default), uses the
66
+ default behavior based on beta headers.
67
+ """
68
+
59
69
  strict: bool
60
70
  """When true, guarantees schema validation on tool names and inputs"""
61
71
 
anthropic/types/usage.py CHANGED
@@ -20,6 +20,9 @@ class Usage(BaseModel):
20
20
  cache_read_input_tokens: Optional[int] = None
21
21
  """The number of input tokens read from the cache."""
22
22
 
23
+ inference_geo: Optional[str] = None
24
+ """The geographic region where inference was performed for this request."""
25
+
23
26
  input_tokens: int
24
27
  """The number of input tokens which were used."""
25
28
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.77.1
3
+ Version: 0.78.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
@@ -523,7 +523,7 @@ message = client.messages.create(
523
523
  "role": "user",
524
524
  }
525
525
  ],
526
- model="claude-sonnet-4-5-20250929",
526
+ model="claude-opus-4-6",
527
527
  metadata={},
528
528
  )
529
529
  print(message.metadata)
@@ -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=fGH67prdJwMieyAN4Ns0HRHDrwih13gb8GZycbSJ_tw,14360
14
14
  anthropic/_types.py,sha256=jIMpuLkCfCZ8rLpfnKnGLvHWBEIqo2-Ul992R9Y7p9M,7696
15
- anthropic/_version.py,sha256=vYw_uEStfkx7RgasbxiyzpwVFZ4GOwq2xfmLuUdFBgI,162
15
+ anthropic/_version.py,sha256=bfWTczlY_Lc0YphSwpe4kDxbjnWeHiiyn1zdBr5RRbc,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
@@ -48,8 +48,8 @@ anthropic/lib/bedrock/_client.py,sha256=kZDEdx07b4rXG81evFsWB5TgOqhRwsYoCBJTEkWz
48
48
  anthropic/lib/bedrock/_stream.py,sha256=wCS-1otwfIIVbfG3TFFKxTD-antJiTmprW6eAAGTCDA,871
49
49
  anthropic/lib/bedrock/_stream_decoder.py,sha256=gTlsTn0s6iVOL4Smp_inhDUBcOZuCgGgJib7fORbQWM,2551
50
50
  anthropic/lib/streaming/__init__.py,sha256=HjQ-FBmB7YiliD_Hu3-Li4c2UG8RHwt5pm2qV3iXAIM,1538
51
- anthropic/lib/streaming/_beta_messages.py,sha256=d9J06XGaWKELDpX9unsRnn53dpSDQvNwYXFWGNnQOk0,20395
52
- anthropic/lib/streaming/_beta_types.py,sha256=lnYGoJcdkjWDssp3FgUImNMKHKakVmqkoSHBsAFOJUw,2747
51
+ anthropic/lib/streaming/_beta_messages.py,sha256=vPrzuPcoy81aG42npMQM3IRbiv1VXlA4a7xxnkSBHco,21043
52
+ anthropic/lib/streaming/_beta_types.py,sha256=qeAH9ynqPRf4FstMPwqgpL300iT7BZfCz8jFMPqa9II,2912
53
53
  anthropic/lib/streaming/_messages.py,sha256=6HZ-Xx8AdWFLVtbC1GW99Z4_81MTx8yHHdwOjbHOZ-U,18919
54
54
  anthropic/lib/streaming/_types.py,sha256=8u3j8YaW2KaMbAmo2HF0t7-AVQ9FMD2RmI-gg3mTBvI,3334
55
55
  anthropic/lib/tools/__init__.py,sha256=8JgDqt6ti7klw9JQ78UjFACMc8GmGi-eFWu6xhbZ5MQ,811
@@ -71,14 +71,14 @@ anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7t
71
71
  anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
72
72
  anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
73
73
  anthropic/resources/beta/messages/batches.py,sha256=51m83Ijs6cIE_f4hRQNhSyNqDj5TVt0F0Bm4ryekoLw,36116
74
- anthropic/resources/beta/messages/messages.py,sha256=L_IVosb5ld8HLiVkX3HLdPQDN_7sovZyQPGHJ4XyksA,162173
74
+ anthropic/resources/beta/messages/messages.py,sha256=SiuRh6fbW1M2R92kRBAljuD_cA2kFCc00Pm9uCHPOCU,168807
75
75
  anthropic/resources/beta/skills/__init__.py,sha256=QMC_HEzfI-k0jhfKJThUUjf9wf7Vs8HTxSXYNnvVx2o,836
76
76
  anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqoBvOzZ_iURANE,25036
77
77
  anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
78
78
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
79
79
  anthropic/resources/messages/batches.py,sha256=HlQc5rBYzJu43pnw7H2dSnNN1XHEWpc_czyJ7MSbXj0,28824
80
- anthropic/resources/messages/messages.py,sha256=V4dPVr6Fov31ecgucPTM3w_hcVxpNAY_3--OCV3vRNY,127959
81
- anthropic/types/__init__.py,sha256=EVUJG4Kvid1u5p3Xc_fwiike-jvZgqx9WIvhJN0hw-I,9769
80
+ anthropic/resources/messages/messages.py,sha256=OqK7QREvFubrf4gr0FVf_-99pG3fLvvrBFPDYdTYIxI,132509
81
+ anthropic/types/__init__.py,sha256=zWPhU0H8Z6jTZYTT7Ds7Pu80cDO3MROpJ_pJb8uwdX0,9872
82
82
  anthropic/types/anthropic_beta_param.py,sha256=pCogMqyk-O1fxyYbuvWpLw4sBDfNSIYyUYJcFuGrki8,1003
83
83
  anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
84
84
  anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
@@ -123,7 +123,7 @@ anthropic/types/json_output_format_param.py,sha256=OXADdQgxn9OzpiE16hm3neXUXTPMm
123
123
  anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
124
124
  anthropic/types/message_count_tokens_params.py,sha256=7hZO0L8mgCPXaDFCHXK_OK7VIjzgBjEaPEdoOYXAZ7E,6923
125
125
  anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
126
- anthropic/types/message_create_params.py,sha256=6CmFAqKc_tNNCNGpoWVknQt-tq5bcFfzhG_bvAVwcIs,11210
126
+ anthropic/types/message_create_params.py,sha256=lFkN4PptvcnKM9YVkTHm4oy-ktzUJDCsTmAhUsJQ69s,11399
127
127
  anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
128
128
  anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
129
129
  anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
@@ -132,11 +132,11 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
132
132
  anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
133
133
  anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
134
134
  anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
135
- anthropic/types/model.py,sha256=ZnWBIjrO55aaGtSgqjaKHHqIWytxPjwbQfEP-oV5CtQ,914
135
+ anthropic/types/model.py,sha256=fedLM7YnL41jb3aiuNknAq9CT1arQ8lSyLzDJ2-cumo,941
136
136
  anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
137
137
  anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
138
- anthropic/types/model_param.py,sha256=99rcpm60i-IEXl-PKmIuyyilKxLFeGHAhFDnTxIduNM,960
139
- anthropic/types/output_config_param.py,sha256=0HeAWxtmqTQtE0KMMURd4s5ae-Cyc1okW2QdH_BUtzg,560
138
+ anthropic/types/model_param.py,sha256=Na9Khxz-FkuWtK7irg_Zh6C_csP6r8cvWlY4AnLflCk,987
139
+ anthropic/types/output_config_param.py,sha256=_sGWSHTgpIQ0v-oBtQeyjtd8GeXIMRSU8B47MM4UAzw,670
140
140
  anthropic/types/parsed_message.py,sha256=oMP1kUgumiHEOXAy8bQzyHppOEDn4coJuCMSGOFcOiE,1632
141
141
  anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
142
142
  anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
@@ -162,9 +162,10 @@ anthropic/types/text_citation_param.py,sha256=nquWfBfKiw_BPawDbsJaQihcd5p46I_dZJ
162
162
  anthropic/types/text_delta.py,sha256=c9IXT5EENOr9TZTD4F6oHbi0gV3SxtsW_FLScgms3SQ,260
163
163
  anthropic/types/thinking_block.py,sha256=2SQDYXwdg0VrYgQVBes6tFY2VU7nFe9UCmqBWL4dun8,290
164
164
  anthropic/types/thinking_block_param.py,sha256=fqeY1_iHnCCcH_36_TZjfwP90BdS8ikSp_WYmHsheSk,367
165
+ anthropic/types/thinking_config_adaptive_param.py,sha256=z75NbgV85-pEQfvzGxQjBS6T20yBwiPKRZvXE90v7Qc,326
165
166
  anthropic/types/thinking_config_disabled_param.py,sha256=13QHVviCeaBGcZ2_xsYQROrC9p4-GFhdoeIVXZ9AXX4,326
166
167
  anthropic/types/thinking_config_enabled_param.py,sha256=MKCofudk-qk80KzdkXWvA9Id_QeS0Q4_3gznpU0_ZqE,726
167
- anthropic/types/thinking_config_param.py,sha256=n9h9Z_QtYpV7QnsbvkKYtTpT2opWjmPv1dx-RVKQzy0,463
168
+ anthropic/types/thinking_config_param.py,sha256=WnXaVizVvLBN-uX8avLjFpYH3XibVtcLmzH2B8qBgFw,570
168
169
  anthropic/types/thinking_delta.py,sha256=OfGsFuv2SEKKIbMQw0fdQBnIPZtwNFQEB2oGjlryCNg,276
169
170
  anthropic/types/tool_bash_20250124_param.py,sha256=6YUxpHWCzVZY1Gvwyj7xX2yOFuK1wuupG4QOHf3efYU,785
170
171
  anthropic/types/tool_choice_any_param.py,sha256=QKtNQbAvqbB5sh02Kbpihxdw77tCFcDOgPV1mFu3h90,536
@@ -172,7 +173,7 @@ anthropic/types/tool_choice_auto_param.py,sha256=Zk2s9x4QNeQN458nzsJjGZlpVwxSLoe
172
173
  anthropic/types/tool_choice_none_param.py,sha256=uAVV99JNVXGC5aFsQRildmzCiw1sWpWK3mzMSDoBuqs,361
173
174
  anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
174
175
  anthropic/types/tool_choice_tool_param.py,sha256=2w_8mPWrZTMuqKxxHg-6TGzRv1QEYGPMFItq0mr09rs,626
175
- anthropic/types/tool_param.py,sha256=gfxhl4KsQxGCIuPpaZdj_zCgORLW0CNDDvFLTDk-Hqg,1949
176
+ anthropic/types/tool_param.py,sha256=pRPcNvxo-qRv6Wej4nT3YPNkaGyPSlm-SuCuxvDeQgs,2415
176
177
  anthropic/types/tool_result_block_param.py,sha256=0rbEAOygNLSnt03pfVdZfcTEVWK_CbBdk2mdUTN0gkg,985
177
178
  anthropic/types/tool_text_editor_20250124_param.py,sha256=LQg6a8GYGSC7YBlebvTrm2a_Y0I8DMyr_zndBLYdbhU,818
178
179
  anthropic/types/tool_text_editor_20250429_param.py,sha256=deB5DCb8gdk9eVHwX1fMKSfq345OqHfrkLit1MeDvXA,827
@@ -182,7 +183,7 @@ anthropic/types/tool_use_block.py,sha256=J7sfsR1qlXgoglwcYaXktgaeEfS8oBYUwe1bqG7
182
183
  anthropic/types/tool_use_block_param.py,sha256=m5biFrQ21gEEwBu9UgoVXVCK_TwHdJMvvQ_Gl_MC45o,623
183
184
  anthropic/types/url_image_source_param.py,sha256=jhgWbgwFgChO8v_XZzuMpuv2u3E0R8zISam8WbVwXyw,329
184
185
  anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn3euIWPBMKk,325
185
- anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
186
+ anthropic/types/usage.py,sha256=6y-mFAZOKyOmJcgSdhjinUsdhoRw6IX_0fndfF-Xt9Q,1174
186
187
  anthropic/types/web_search_result_block.py,sha256=Y8-r0n86qKex4eonDCKre4mS1w7SXleuOFMCT6HmpHU,396
187
188
  anthropic/types/web_search_result_block_param.py,sha256=AbQnJIyfQYHSOEUYxBCGuZNqP5hmpFZI_1SxyD5QC8A,476
188
189
  anthropic/types/web_search_tool_20250305_param.py,sha256=9I66rlc5LJd0s3fnmHZJpEtu2WhiyxxeAjBFcwvcT4c,2025
@@ -192,7 +193,7 @@ anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTd
192
193
  anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
193
194
  anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
194
195
  anthropic/types/web_search_tool_result_error.py,sha256=btsBGbXO_vbc62t4ENt4J7F3z9tRQqc73bSctPg03ro,491
195
- anthropic/types/beta/__init__.py,sha256=_hmjiIhMBtGgD81SAj6AexMtDj7UDm8Y_MtRZEZBoT0,21664
196
+ anthropic/types/beta/__init__.py,sha256=e34oWhfZTUgeZVd_cYSoMX_S5qKAZiMxgAE4tBXhNZU,22456
196
197
  anthropic/types/beta/beta_all_thinking_turns_param.py,sha256=tC2sF_TI22gg4pa6BN4EYHEdudq0M5DIiAQczqiWyAo,317
197
198
  anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
198
199
  anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
@@ -238,15 +239,20 @@ anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.p
238
239
  anthropic/types/beta/beta_code_execution_tool_result_error.py,sha256=SuLEG42APBGhO0jVc2xu8eXLS1_mM9x5trxtwrXS5ok,461
239
240
  anthropic/types/beta/beta_code_execution_tool_result_error_code.py,sha256=BqoqrsTwo3PuXYz4mPiZr4z-q1kx2hs5iLoL7_otmyU,338
240
241
  anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_buEPIfaeGUnF9_pdfexZhjh_zdQju3LcERNVis,528
242
+ anthropic/types/beta/beta_compact_20260112_edit_param.py,sha256=vtooQBtPXTRPAADENcqm50qOY-uSamGDGeMIqUyKkkY,875
243
+ anthropic/types/beta/beta_compaction_block.py,sha256=1TB-lFNVTngxrHWia_92muPvid5iFjEpXmIICuWGMj4,705
244
+ anthropic/types/beta/beta_compaction_block_param.py,sha256=dW7O-XKaZXQea7RfU3QnfTh_1KfB3uqPTN7JFewBCUQ,1030
245
+ anthropic/types/beta/beta_compaction_content_block_delta.py,sha256=trdoecZJbRFi7Cn4XH_37OaNPJVz227Ah73faAcPa7E,359
246
+ anthropic/types/beta/beta_compaction_iteration_usage.py,sha256=I7vqMAcJigQBCZG8bzXhFlPRAhfHEfvpTSFSY5ZjHnU,912
241
247
  anthropic/types/beta/beta_container.py,sha256=TdNMRmTVJlJuvN0KEjeCYmSTXeKf0Wm8FuNmKsLyFEA,625
242
248
  anthropic/types/beta/beta_container_params.py,sha256=JI1gltJKsz-6RWH7Iyho8_Y9Im659b92Un_sKQOYP9g,539
243
249
  anthropic/types/beta/beta_container_upload_block.py,sha256=ebNuqOpWiBh41Q2qIrVZr1JYWqMxxoQQ1-3MylywG8k,364
244
250
  anthropic/types/beta/beta_container_upload_block_param.py,sha256=49MzD6ylPreuDNSS22iTT-ByyMwjlwmRnO9yxS5ZAGI,782
245
- anthropic/types/beta/beta_content_block.py,sha256=Q9iGB1yETOXgoynKkG7VUHMloNOHzs8M3_de8uHrUjs,1797
246
- anthropic/types/beta/beta_content_block_param.py,sha256=_Hpe-82H7ua6Db07Y92r9Fp-oSnbG1oAx1FqPxeSLsM,2389
251
+ anthropic/types/beta/beta_content_block.py,sha256=1DwzmGv3PLWk7k_yIlPAYo6E1Bc1RvCwQZ2D5epLG9M,1881
252
+ anthropic/types/beta/beta_content_block_param.py,sha256=P6BF7odyv5ANz0sPgIwV-mQvRhvClEyWDM54jD9Lh9M,2485
247
253
  anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
248
254
  anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
249
- anthropic/types/beta/beta_context_management_config_param.py,sha256=cs3d7mNlprV34_UX8QPihM1FkCx6Tnzo7CjWVBVD0Qk,684
255
+ anthropic/types/beta/beta_context_management_config_param.py,sha256=SByL1rXGhyAi_IT8khzsXeuf8GyJrK2g9_o81OV1P4E,795
250
256
  anthropic/types/beta/beta_context_management_response.py,sha256=qwkhE6vtToG7m34R8cxPyOfzej_x7Nfeis5tuEWk8mI,804
251
257
  anthropic/types/beta/beta_count_tokens_context_management_response.py,sha256=efL0nsrOlA7KTIQ-M5IiXRmbmb6q-dakLp3oNnEh5G8,341
252
258
  anthropic/types/beta/beta_direct_caller.py,sha256=TM5hhPsVBlEOb7G15636eOHuOgIjwM3mH_Y6iKtJl14,308
@@ -258,6 +264,7 @@ anthropic/types/beta/beta_image_block_param.py,sha256=CkS_-Ft9RuiIEdsUNXUFMSphVY
258
264
  anthropic/types/beta/beta_input_json_delta.py,sha256=MPlt9LmfuwmpWryQagjkkVHHZRfZzIJZq3a6JWi7auE,293
259
265
  anthropic/types/beta/beta_input_tokens_clear_at_least_param.py,sha256=9VMW4rN_ZeSQp5ianz-815vc_h23XjC-FI6ZICsC7d8,366
260
266
  anthropic/types/beta/beta_input_tokens_trigger_param.py,sha256=_7MSRq8ZykSOZxxr2upnPqpSZEQ42_m53wHhcqiQ2rE,356
267
+ anthropic/types/beta/beta_iterations_usage.py,sha256=L-xk7ni7xSUnw86qHF6415Y6JkhVJhhKFNhzzyxGQ4E,528
261
268
  anthropic/types/beta/beta_json_output_format_param.py,sha256=DYONF-cbP6gSVz0z_5C4H_Nyg-NBrdx59PwTrXiyIbA,430
262
269
  anthropic/types/beta/beta_mcp_tool_config_param.py,sha256=UBXvtQkihooZFlCW_DazHKGHnIs5ZT_mJNv79m_IVok,364
263
270
  anthropic/types/beta/beta_mcp_tool_default_config_param.py,sha256=xYBOPL0TPdn83bgx4FufVNGdqMR1Ghq7d1bJ7YZYx4w,376
@@ -274,17 +281,18 @@ anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdur
274
281
  anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
275
282
  anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
276
283
  anthropic/types/beta/beta_message.py,sha256=4s-6QgSHvxkEYCp2Ev-kVcI2yD4vK6PLyS4r_k3Bdx0,4055
277
- anthropic/types/beta/beta_message_delta_usage.py,sha256=fXrjDgH46VN53jTfHzoBPavFWx4YgBMH1T1ni4f9D2w,838
284
+ anthropic/types/beta/beta_message_delta_usage.py,sha256=T3JsPAZdwAo-qrFigRxwcbFVNLm3fuZTu5U6zOzS3to,1357
285
+ anthropic/types/beta/beta_message_iteration_usage.py,sha256=WgwcNlVdp2eO2BEd-QsoQQBwZc7spZjGDW2XZDMvaF0,899
278
286
  anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZkueSrU_Go3gUc,477
279
287
  anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
280
288
  anthropic/types/beta/beta_metadata_param.py,sha256=julUtAFfgnCXSt0sN8qQ-_GuhJvpXbQyqlPhyzE8jmQ,602
281
289
  anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dtXFUPbuWqAA,655
282
- anthropic/types/beta/beta_output_config_param.py,sha256=hVxlXuKidtHNuWUwnLA1Br6V5F5mmaaUkRW5dPuQHpM,847
290
+ anthropic/types/beta/beta_output_config_param.py,sha256=wofdj1d6QH48kOt56iIiD3XQ2NxddpowJuS2jOSShm8,691
283
291
  anthropic/types/beta/beta_plain_text_source.py,sha256=u3XpMPojTxn-_LvFdYYMLc_b8WI2ggIXdoZ4pDK4Q-Y,314
284
292
  anthropic/types/beta/beta_plain_text_source_param.py,sha256=5VW_apR2n3-G6KmDq6b58Me7kGTcN2IAHAwsGbPrlVQ,390
285
- anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h8AbwryMo9HXw4mNnrmv7Krg,690
293
+ anthropic/types/beta/beta_raw_content_block_delta.py,sha256=yqzrvWsuJMFahDLOIG8cNRosgJoVvFjdwAli-jpnNZE,859
286
294
  anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
287
- anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=FziITn3XF0iYL982558T_VoEEK_4bMEeqROi19zLwEI,2067
295
+ anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=oahWouOcELI6W85Xae83eys4qNksqatiguUx9_4vAq0,2151
288
296
  anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
289
297
  anthropic/types/beta/beta_raw_message_delta_event.py,sha256=L1XDYvixPbxjEW-r37TghkL2pn8B0311dj_nky_1xMA,1738
290
298
  anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
@@ -305,7 +313,7 @@ anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=Hq3I7deQ9nF4bExG
305
313
  anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
306
314
  anthropic/types/beta/beta_skill.py,sha256=mvnxLGUWAN39GYKdKiJVAK8_-ZxvQinb2ovxwdUqKpU,522
307
315
  anthropic/types/beta/beta_skill_params.py,sha256=mdRneR8t9DHPX2YrwQi0NBkQmsF5LVnSYqCAggRFOSE,604
308
- anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
316
+ anthropic/types/beta/beta_stop_reason.py,sha256=cqaxnwy6GUssxJjaIYlh5s3eWiDTN3wCIZL5NKRfHCo,365
309
317
  anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
310
318
  anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
311
319
  anthropic/types/beta/beta_text_citation.py,sha256=Ia_-kJ48QQ4ZN5AeWbCSCzAFwNXjVM4LHf-5-jyBJog,921
@@ -323,9 +331,10 @@ anthropic/types/beta/beta_text_editor_code_execution_view_result_block.py,sha256
323
331
  anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py,sha256=P9UB7HVx7ordu7YZ6M4EceO3yG-OwtrDyHolPe_EIc0,603
324
332
  anthropic/types/beta/beta_thinking_block.py,sha256=R-w0ZLaNZzELS2udP0vtxtDmE2MgNcf5gXz9FyMQVEg,299
325
333
  anthropic/types/beta/beta_thinking_block_param.py,sha256=tiOk592SxRHZ77nDIpLuocz35B_1yB3qbr7MTZqhnEA,375
334
+ anthropic/types/beta/beta_thinking_config_adaptive_param.py,sha256=f_I1zIV_wdsaKzDkW5_aviWa2AMRQnV6euHQDW5JVLY,334
326
335
  anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUdyl43EpEz3BRIFhDG2dQCjcBYjRc54o,334
327
336
  anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kNN0xbBxucO4ScM6JKIANaDfM3toSWE,734
328
- anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
337
+ anthropic/types/beta/beta_thinking_config_param.py,sha256=cESklqOtoQ3Eu-exMPZgq8oOT2_B1Vrus2XGMSbAGWs,617
329
338
  anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
330
339
  anthropic/types/beta/beta_thinking_turns_param.py,sha256=4rhTtQqaot1VJOhVAIJbGjQ3Q4SVUs9IN0o-TrRfejo,348
331
340
  anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=Vr-6XR0I_Rd_TM4s4MTMpteS67VmdmoqOJ_U6dlWMZc,1119
@@ -338,7 +347,7 @@ anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=WQZbn92NIJnIQ_m98WbMz
338
347
  anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=8OKFR8M5sGTawjWY8adP-RIu5i6gck9As1Sw9zOumAg,1406
339
348
  anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=v-OhPl0PHULjQ_Vz7VnVJKVlxX6-OVPseinojdY9icM,1406
340
349
  anthropic/types/beta/beta_tool_computer_use_20251124_param.py,sha256=LhKLBnvYBYdyscOTsbjTivmDqx0OFRjXZXqvc5M94zc,1513
341
- anthropic/types/beta/beta_tool_param.py,sha256=CsuOSfMzIkEh0V92WI45Zf7uT0DXLfjme9jRfCGends,2177
350
+ anthropic/types/beta/beta_tool_param.py,sha256=BnwRo-8AUnEFfvVD8wuOdXF8O5u7ifX-tmNF-qRTomI,2643
342
351
  anthropic/types/beta/beta_tool_reference_block.py,sha256=V9jo_vWMQMArdq5NdckUnCu-IeqZKoTmAGdAQbFY4dI,296
343
352
  anthropic/types/beta/beta_tool_reference_block_param.py,sha256=jB3AZvKmpwdRZyXuoI9BVOI_GrldY7rfTlHplTvkY40,675
344
353
  anthropic/types/beta/beta_tool_result_block_param.py,sha256=Nq6-m74g7glHVUqW6dgMpq_c1B901r4NhUUEGPB14q0,1205
@@ -361,7 +370,7 @@ anthropic/types/beta/beta_tool_uses_keep_param.py,sha256=R9sHxEwQq33kSQEiIG_ONm9
361
370
  anthropic/types/beta/beta_tool_uses_trigger_param.py,sha256=PbTkerKGtnClYCrACGaodsTkHOSpTz801jp_PzvyBEI,347
362
371
  anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
363
372
  anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49uZz9DgR8mhxLCZT7RIVk,333
364
- anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
373
+ anthropic/types/beta/beta_usage.py,sha256=mU048Dq4dIZZHhfNGsHmNyzRgFd8tCCxDqwxHuTgYK0,1728
365
374
  anthropic/types/beta/beta_web_fetch_block.py,sha256=zL3A3YWcuTPndBPCXkS2QnVN8dSA5x93x_qoYfWvYw4,523
366
375
  anthropic/types/beta/beta_web_fetch_block_param.py,sha256=6q6BR5Mjbknd-S3fIr5FkDEfXZt8CfnlpXB1XviNhz4,631
367
376
  anthropic/types/beta/beta_web_fetch_tool_20250910_param.py,sha256=TiotDTz1tLAbN9zv8EaFYMd0AjwCe6hsKtcR1oRMOeo,1850
@@ -385,9 +394,9 @@ anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga6
385
394
  anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
386
395
  anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
387
396
  anthropic/types/beta/message_count_tokens_params.py,sha256=sWYqm9eXwu10urJtU25Z9M8dIVc9CKl1-CMVc8JDOUU,10232
388
- anthropic/types/beta/message_create_params.py,sha256=3DVZ38jJuMvU750hYHueVPx6ne5MdA7WMTDH9N1WXmA,12268
397
+ anthropic/types/beta/message_create_params.py,sha256=eqFQYpThl2oD6qyiU1p4Fb8Kq-JmSDEEbXMKSLOXks8,12447
389
398
  anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
390
- anthropic/types/beta/parsed_beta_message.py,sha256=CEV3z-GnMP1krjr0uOIcgx3bg3mminDhoX0KxYlpGes,2464
399
+ anthropic/types/beta/parsed_beta_message.py,sha256=-tUMa2w4GclrdJY3qu0mbpJMfC_CRTX-IuNVRhl1Jns,2548
391
400
  anthropic/types/beta/skill_create_params.py,sha256=5oyHKyq_Fll_J4PwvxLnI7Jn-ThqfKISSlVClK3AIgQ,978
392
401
  anthropic/types/beta/skill_create_response.py,sha256=d6hnEKxiUUvD8chx0RCe0Mm6G-HHCRDz6RDIljc8J24,1161
393
402
  anthropic/types/beta/skill_delete_response.py,sha256=6_8iQ8ufvbzoxrrRo2wDC5QPgcdgzMyLo-EhlArNNZw,413
@@ -395,7 +404,7 @@ anthropic/types/beta/skill_list_params.py,sha256=BEzzX3nWpA-EAKx8UIm0_vjcJzDRxWO
395
404
  anthropic/types/beta/skill_list_response.py,sha256=jImI_kPHYQ8LHtlzkwD9qjBJHAHps8oLzEJzsarg7nM,1157
396
405
  anthropic/types/beta/skill_retrieve_response.py,sha256=MFbkjMKP3a0H38tpsZ4bWZZYLue6eNstgezFJWROROI,1165
397
406
  anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
398
- anthropic/types/beta/messages/batch_create_params.py,sha256=AOe96ut8yVSocqJU014sEsNFqDm5isnWXdgr8EEX1ZQ,1359
407
+ anthropic/types/beta/messages/batch_create_params.py,sha256=1usbJLuy5MTjHgBAkiiIJircoWkMiIr8PKjXAi9kSY4,1360
399
408
  anthropic/types/beta/messages/batch_list_params.py,sha256=_pVFBKhuHPJ3TqXiA9lWO_5W9bjVG291SRCc5BruLuY,978
400
409
  anthropic/types/beta/messages/beta_deleted_message_batch.py,sha256=fxnXySfpTxvxxpB0RPYXPcle6M17Bv4LCeMfDguCFaU,438
401
410
  anthropic/types/beta/messages/beta_message_batch.py,sha256=xvKuMyh5ozZWi9ZNQG7MChZ69rd7cWunUU1WhgMsJIo,2437
@@ -414,7 +423,7 @@ anthropic/types/beta/skills/version_list_params.py,sha256=7ybJm6AoOfrRE22qEF3GaB
414
423
  anthropic/types/beta/skills/version_list_response.py,sha256=S2ifcSXltFr4yJzhCEtuQAQtQ0sMycTuv1djhRId5n4,1183
415
424
  anthropic/types/beta/skills/version_retrieve_response.py,sha256=1cfKkqynLN5Cy2RpUXdI-tlSZT3NK4e-xIUd4jUwEEo,1191
416
425
  anthropic/types/messages/__init__.py,sha256=rL0U5ew9nqZzJRMked2CdI-UVIauM0cAx8O9a2RF5qo,1076
417
- anthropic/types/messages/batch_create_params.py,sha256=u48D4M4jRAVR7LlJbEGkphjqyp-pSWlDkOBZV9_8f0Q,1091
426
+ anthropic/types/messages/batch_create_params.py,sha256=4kLtO6FnAY_VvibgcCHLBSKmW2uZjDyLAANL1MbIlYw,1092
418
427
  anthropic/types/messages/batch_list_params.py,sha256=uuyRsq3a2qb89vESjKuvz7l6bkVewfQSJsVzWp8lKrI,691
419
428
  anthropic/types/messages/deleted_message_batch.py,sha256=f5CDJzj4UEsRAy9SkYivpMuz-E5lpfoLHTl8mLeThAg,429
420
429
  anthropic/types/messages/message_batch.py,sha256=2Oxp1wiOkp22w_UvIkBL4cgwH-4IkZcAx7MpN-ycYGg,2415
@@ -437,7 +446,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
437
446
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
438
447
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
439
448
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
440
- anthropic-0.77.1.dist-info/METADATA,sha256=EovmazbfnXi4xnMbExL5DNi4LrE-djrmJd-h_MDEdJc,28630
441
- anthropic-0.77.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
442
- anthropic-0.77.1.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
443
- anthropic-0.77.1.dist-info/RECORD,,
449
+ anthropic-0.78.0.dist-info/METADATA,sha256=uippkO5sJFOvCJb3zLmrFQ2h-9TCMBxP6UKtVQqJtbI,28619
450
+ anthropic-0.78.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
451
+ anthropic-0.78.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
452
+ anthropic-0.78.0.dist-info/RECORD,,