-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Read timeout with Autogen Bedrock implementation in v0.2.40 #5505
Comments
Thanks for reporting the issue. Would you like to submit a PR to fix it? |
@ekzhu - I have raised a PR #5529 to implement fix for this issue. Kindly let me know if any further details are required from my side. If everything looks good based on the review of this PR, can you please help us understand on what's the plan to make this fix available via release for autogen 0.2.x version. |
Once the fix gets merged we will create a new v0.2 release. |
Thanks @ekzhu for the confirmation! |
We are facing read timeout error while using the autogen bedrock implementation with large input tokens. The default read timeout in boto3 configuration is 60 seconds and autogen implementation doesn't allow any modification to this value while initializing the
BedrockClient
class.Here is the error message:
We can see that the
__init__
method for classBedrockClient
does accept variable keyword arguments however the same is not being used while defining the variablebedrock_config
within this method.The text was updated successfully, but these errors were encountered: