8000 Update bedrock.py by Unshure · Pull Request #1 · Unshure/sdk-python · GitHub
[go: up one dir, main page]

Skip to content

Update bedrock.py #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

< 8000 details class="details-reset details-overlay toc-select js-conversations-details select-menu ml-0"> Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update bedrock.py
  • Loading branch information
Unshure authored May 30, 2025
commit 04f8ecdf14b5a95ac2df330f9250eb06372a9c0d
2 changes: 1 addition & 1 deletion src/strands/models/bedrock.py
75E3
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def stream(self, request: dict[str, Any]) -> Iterable[StreamEvent]:
ModelThrottledException: If the model service is throttling requests.
"""
streaming = self.config.get("streaming", True)

print(request)
try:
if streaming:
# Streaming implementation
Expand Down
0