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
{{ message }}
This repository was archived by the owner on May 27, 2026. It is now read-only.
The current dependency pins in pgai are quite outdated, which creates conflicts when trying to integrate pgai into projects that use newer versions of common AI/ML libraries.
For example:
litellm is pinned to >=1.65.0,<1.73.0 (current: 1.81.5)
openai is pinned to >=1.44,<2.0 (current: 2.16.0)
ollama is pinned to >=0.4.5,<0.6.0 (current: 0.6.1)
tiktoken is pinned to >=0.7,<1.0 (current: 0.12.0)
anthropic is pinned to 0.49.0 (current: 0.77.0)
This makes it difficult to use pgai alongside other libraries that depend on newer versions of these packages.
We've tested with relaxed version constraints (removing upper bounds) and observed no major issues - the unit tests pass and imports work correctly with the latest versions. Are there plans to bump these dependencies? What's blocking the upgrade?
The current dependency pins in pgai are quite outdated, which creates conflicts when trying to integrate pgai into projects that use newer versions of common AI/ML libraries.
For example:
litellmis pinned to>=1.65.0,<1.73.0(current: 1.81.5)openaiis pinned to>=1.44,<2.0(current: 2.16.0)ollamais pinned to>=0.4.5,<0.6.0(current: 0.6.1)tiktokenis pinned to>=0.7,<1.0(current: 0.12.0)anthropicis pinned to0.49.0(current: 0.77.0)This makes it difficult to use pgai alongside other libraries that depend on newer versions of these packages.
We've tested with relaxed version constraints (removing upper bounds) and observed no major issues - the unit tests pass and imports work correctly with the latest versions. Are there plans to bump these dependencies? What's blocking the upgrade?