Skip to content
Open
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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
dependencies = [
"click>=8.1.0",
"keyring>=24.0.0",
"GitPython>=3.1.41",
"GitPython>=3.1.50",
"Jinja2>=3.1.6",
"tree-sitter>=0.23.2",
"tree-sitter-language-pack>=0.8.0",
Expand All @@ -43,13 +43,13 @@ dependencies = [
"markdown-it-py>=3.0.0",
"mcp>=1.23.0",
"openai>=2.30.0",
"litellm>=1.83.0",
"litellm>=1.83.10",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Avoid a litellm floor that conflicts with direct deps

When installing from public PyPI, this new floor can make the project unsatisfiable: the PyPI metadata for litellm==1.83.10 declares openai==2.24.0 and python-dotenv==1.0.1, which conflicts with this project’s existing openai>=2.30.0 and the newly raised python-dotenv>=1.2.2 (mirrored in requirements.txt). A fresh pip install -e . or pip install -r requirements.txt against an index whose latest/safe LiteLLM is 1.83.10 will fail resolution instead of fixing the supply-chain gate; the floor needs to be a LiteLLM release whose own dependency metadata is compatible with these direct requirements, or the direct requirements need to be adjusted together.

Useful? React with 👍 / 👎.

"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pydantic-ai>=1.56.0",
"requests>=2.33.0",
"tiktoken>=0.8.0",
"python-dotenv>=1.1.1",
"python-dotenv>=1.2.2",
"rich>=14.1.0",
"networkx>=3.5",
"psutil>=7.0.0",
Expand All @@ -58,7 +58,7 @@ dependencies = [
"mermaid-py>=0.8.0",
"fastapi>=0.135.2",
"uvicorn>=0.35.0",
"python-multipart>=0.0.22",
"python-multipart>=0.0.27",
"colorama>=0.4.6",
"logfire>=4.1.0"
]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# `[project.dependencies]` in `pyproject.toml`.
click>=8.1.0
keyring>=24.0.0
GitPython>=3.1.41
GitPython>=3.1.50
Jinja2>=3.1.6
tree-sitter>=0.23.2
tree-sitter-language-pack>=0.8.0
Expand All @@ -20,13 +20,13 @@ anthropic>=0.52.0
markdown-it-py>=3.0.0
mcp>=1.23.0
openai>=2.30.0
litellm>=1.83.0
litellm>=1.83.10
pydantic>=2.11.7
pydantic-settings>=2.10.1
pydantic-ai>=1.56.0
requests>=2.33.0
tiktoken>=0.8.0
python-dotenv>=1.1.1
python-dotenv>=1.2.2
rich>=14.1.0
networkx>=3.5
psutil>=7.0.0
Expand All @@ -35,6 +35,6 @@ mermaid-parser-py>=0.0.2
mermaid-py>=0.8.0
fastapi>=0.135.2
uvicorn>=0.35.0
python-multipart>=0.0.22
python-multipart>=0.0.27
colorama>=0.4.6
logfire>=4.1.0
Loading