-
Notifications
You must be signed in to change notification settings - Fork 740
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
fix: update anthropic #1392
fix: update anthropic #1392
Conversation
pyproject.toml
Outdated
@@ -48,7 +48,7 @@ litellm = { version = "^1.38.1", optional = true } | |||
google-generativeai = { version = "^0.6.0", optional = true } | |||
mistralai = { version = "^1.1.0", optional = true } | |||
reka-api = { version = "^3.0.8", optional = true } | |||
anthropic = { version = "^0.40.0", optional = true } | |||
anthropic = { version = "0.42.0", optional = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing ^
will fix the version, we'd better don't do that
also always remember to run poetry lock if you made change to the toml file
anthropic = { version = "0.42.0", optional = true } | |
anthropic = { version = "^0.42.0", optional = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Asher-hss , added one more commit 3758c89 to fix, feel free to check
Description
#1356
Motivation and Context
[Why is this change required? What problem does it solve?
#1356
Types of changes
What types of changes does your code introduce? Put an
x
in all the boxes that apply:Implemented Tasks
Checklist
Go over all the following points, and put an
x
in all the boxes that apply.If you are unsure about any of these, don't hesitate to ask. We are here to help!