Spaces:
Sleeping
Sleeping
Commit
·
61546e3
1
Parent(s):
ea856a6
Remove openlit dependency to fix HF Spaces build timeout
Browse filesopenlit has conflicting dependencies with litellm/anthropic, causing
pip to infinitely backtrack through versions during dependency resolution.
Since openlit is marked as optional (monitoring tool), removing it
to allow successful builds.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- pyproject.toml +1 -1
pyproject.toml
CHANGED
|
@@ -63,7 +63,7 @@ dependencies = [
|
|
| 63 |
|
| 64 |
# ===== 可选功能 =====
|
| 65 |
"dowhy>=0.12", # 🟡 因果分析 (3+ 使用,可选)
|
| 66 |
-
"openlit>=1.33.0",
|
| 67 |
|
| 68 |
# 🔧 开发/调试工具 (生产环境可考虑移除)
|
| 69 |
"fire>=0.7.0", # 🟡 CLI工具 (1 使用)
|
|
|
|
| 63 |
|
| 64 |
# ===== 可选功能 =====
|
| 65 |
"dowhy>=0.12", # 🟡 因果分析 (3+ 使用,可选)
|
| 66 |
+
# "openlit>=1.33.0", # 🚫 已移除: 与 litellm/anthropic 版本冲突导致 pip 无限回溯
|
| 67 |
|
| 68 |
# 🔧 开发/调试工具 (生产环境可考虑移除)
|
| 69 |
"fire>=0.7.0", # 🟡 CLI工具 (1 使用)
|