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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies = [
"starlette>=0.47.1",
"aiohttp>=3.12.14",
"authlib>=1.6.0",
"openai==1.99.1",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Remove OpenAI addition; it contradicts PR scope (LCORE-336).

PR explicitly says “update dependencies excluding OpenAI,” but this adds a new runtime dep openai==1.99.1. Please drop this change from this PR or move it to a separate, explicitly scoped PR. If OpenAI is needed, consider placing it in a non-core dependency group (e.g., an optional group) rather than the core runtime deps.

Apply this diff to revert for this PR:

-    "openai==1.99.1",

Optionally, if needed in a separate PR, prefer an optional group:

+[dependency-groups]
+ai-providers = [
+    "openai==1.99.1",
+]

To ensure the pinned version exists on PyPI before introducing it in a follow-up PR, run:


🏁 Script executed:

#!/bin/bash
set -euo pipefail
curl -s https://pypi.org/pypi/openai/json | jq -r '.releases | keys[]' | grep -Fx '1.99.1' || {
  echo "Version 1.99.1 not found on PyPI for 'openai'." >&2
  exit 1
}

Length of output: 117


Remove OpenAI from core dependencies

The scope of LCORE-336 is to update existing dependencies — it explicitly excludes adding OpenAI. This PR introduces a new runtime dependency (openai==1.99.1), so please revert that change here or move it into its own, optional dependency group in a follow-up PR (we’ve confirmed openai==1.99.1 exists on PyPI).

• File: pyproject.toml
• Line: 36

Suggested diff to revert in this PR:

-    "openai==1.99.1",

If you still need OpenAI in a separate PR, consider:

+[dependency-groups]
+ai-providers = [
+    "openai==1.99.1",
+]
📝 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.1",
🤖 Prompt for AI Agents
In pyproject.toml at line 36, the openai==1.99.1 dependency was added but should
be removed from the core dependencies as per the scope of LCORE-336. Remove the
openai==1.99.1 entry from the dependencies section in this PR. If OpenAI is
needed, add it later in a separate optional dependency group in a follow-up PR.

]

[tool.pyright]
Expand Down
Loading
Loading