Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies = [
"authlib>=1.6.0",
# OpenAPI exporter
"email-validator>=2.2.0",
"openai==1.99.9",
"openai>=1.99.9",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Add an upper bound to prevent accidental breaking upgrades.

Unbounded minimum (openai>=1.99.9) can pull a future major with breaking API changes. Prefer a capped range.

Apply this diff:

-    "openai>=1.99.9",
+    "openai>=1.99.9,<2.0.0",

Optional: If you specifically want to allow only compatible minor/patch under PEP 440, use ~=1.99.9 (caps at <1.100.0), but <2.0.0 is usually clearer.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"openai>=1.99.9",
"openai>=1.99.9,<2.0.0",
🤖 Prompt for AI Agents
In pyproject.toml around line 46, the openai dependency is specified as an
unbounded minimum ("openai>=1.99.9"); change it to a range that prevents pulling
a future major with breaking API changes by adding an upper bound (for example
use a capped range of >=1.99.9 and <2.0.0 or use the compatible release operator
~=1.99.9 which caps at <1.100.0) so the dependency will not unexpectedly upgrade
to a breaking major version.

# Used by database interface
"sqlalchemy>=2.0.42",
# Used by Llama Stack version checker
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading