diff --git a/src/anthropic/lib/bedrock/_beta_messages.py b/src/anthropic/lib/bedrock/_beta_messages.py index 332f6fba..5f986b14 100644 --- a/src/anthropic/lib/bedrock/_beta_messages.py +++ b/src/anthropic/lib/bedrock/_beta_messages.py @@ -13,6 +13,8 @@ class Messages(SyncAPIResource): create = FirstPartyMessagesAPI.create + tool_runner = FirstPartyMessagesAPI.tool_runner + stream = FirstPartyMessagesAPI.stream @cached_property def with_raw_response(self) -> MessagesWithRawResponse: @@ -36,6 +38,8 @@ def with_streaming_response(self) -> MessagesWithStreamingResponse: class AsyncMessages(AsyncAPIResource): create = FirstPartyAsyncMessagesAPI.create + tool_runner = FirstPartyAsyncMessagesAPI.tool_runner + stream = FirstPartyAsyncMessagesAPI.stream @cached_property def with_raw_response(self) -> AsyncMessagesWithRawResponse: