mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-24 15:48:23 +00:00
The openai dependency was constrained to ~=1.83.0 which only allows versions >=1.83.0,<1.84.0. This prevented integration with OpenLit which requires openai >= 1.92.0. Changed the constraint to >=1.83.0,<2 to: - Allow OpenLit and other integrations that need newer openai versions - Prevent potential breaking changes from openai 2.x Added tests to verify the constraint allows OpenLit-compatible versions while maintaining an upper bound for stability. Fixes #4270 Co-Authored-By: João <joao@crewai.com>