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