You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use up-to-date versions of provider packages to ensure I have access to the latest features and security fixes. I notice that dependencies are quite specific (and old).
Example:
the pinned anthropic = { version = "^0.30.1", optional = true } is out of date (they're now at 0.42)
the pinned openai = { version = "^1.35.8", optional = true } is out of date (they're now at 1.59)
Critically, this also introduces conflicts if I want to use other packages in the LLM ecosystem; e.g., the anthropic version specified by aisuite (0.30.1) conflicts with llama-index-llms-anthropic, which require anthropic>=0.39.
The text was updated successfully, but these errors were encountered:
I’d like to contribute by updating these dependencies to the latest versions to ensure access to new features, security fixes, and to resolve conflicts with other packages.
Since I’m new to open source development, I would really appreciate any guidance on how to get started. Would it be possible to have this issue assigned to me?
I would like to use up-to-date versions of provider packages to ensure I have access to the latest features and security fixes. I notice that dependencies are quite specific (and old).
Example:
the pinned anthropic = { version = "^0.30.1", optional = true } is out of date (they're now at 0.42)
the pinned openai = { version = "^1.35.8", optional = true } is out of date (they're now at 1.59)
Critically, this also introduces conflicts if I want to use other packages in the LLM ecosystem; e.g., the anthropic version specified by aisuite (0.30.1) conflicts with llama-index-llms-anthropic, which require anthropic>=0.39.
For instance, if we previously ran poetry add requests@^2.13.0 and wanted to update the library and ran poetry update requests, poetry would update us to version 2.14.0 if it was available, but would not update us to 3.0.0.
I would like to use up-to-date versions of provider packages to ensure I have access to the latest features and security fixes. I notice that dependencies are quite specific (and old).
Example:
anthropic = { version = "^0.30.1", optional = true }
is out of date (they're now at 0.42)openai = { version = "^1.35.8", optional = true }
is out of date (they're now at 1.59)Critically, this also introduces conflicts if I want to use other packages in the LLM ecosystem; e.g., the anthropic version specified by
aisuite
(0.30.1) conflicts withllama-index-llms-anthropic
, which require anthropic>=0.39.The text was updated successfully, but these errors were encountered: