Skip to content

Commit c5fe617

Browse files
committed
Remove RouteLLM dependency to fix CI - Issue #426
RouteLLM was causing CI failures due to heavy dependencies (torch, sglang, etc.) that have complex build requirements. Since Claude Skills refactor is Anthropic-only and doesn't use RouteLLM, it's been commented out. Can be re-enabled if multi-provider support is added back in the future. This should fix CI dependency installation failures.
1 parent 3761311 commit c5fe617

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@ dependencies = [
6969
"six>=1.16.0",
7070
# Google AI for generative models
7171
"google-generativeai>=0.3.0",
72-
# Data visualization
72+
# Data visualization
7373
"seaborn>=0.11.0",
7474
"matplotlib>=3.5.0",
75-
# RouteLLM for intelligent model routing and cost optimization
76-
"routellm[serve,eval]>=0.1.0",
75+
# Note: RouteLLM removed for Claude Skills refactor (Anthropic-only)
76+
# Re-enable if multi-provider support is added back
77+
# "routellm[serve,eval]>=0.1.0",
7778
]
7879

7980
[project.optional-dependencies]

0 commit comments

Comments
 (0)