Skip to content

Commit

Permalink
fix(dependencies): resolve issues with litellm package (stanfordnlp#7842
Browse files Browse the repository at this point in the history
)
  • Loading branch information
chakravarthik27 authored Feb 24, 2025
1 parent f19f1e4 commit b37f282
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 23 deletions.
52 changes: 31 additions & 21 deletions poetry.lock

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

10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ pgvector = { version = "^0.2.5", optional = true }
llama-index = { version = "^0.10.30", optional = true }
jinja2 = "^3.1.3"
magicattr = "^0.1.6"
litellm = { version = ">=1.59.8,<2.0.0", extras = ["proxy"] }
litellm = [
{ version = ">=1.59.8,<2.0.0", markers = "sys_platform == 'win32'" },
{ version = ">=1.59.8,<2.0.0", extras = ["proxy"], markers = "sys_platform != 'win32'" }
]
diskcache = "^5.6.0"
json-repair = "^0.30.0"
tenacity = ">=8.2.3"
Expand All @@ -156,7 +159,10 @@ pre-commit = "^3.7.0"
ipykernel = "^6.29.4"
semver = "^3.0.2"
pillow = "^10.1.0"
litellm = {version = ">=1.59.8,<2.0.0", extras = ["proxy"]}
litellm = [
{ version = ">=1.59.8,<2.0.0", markers = "sys_platform == 'win32'" },
{ version = ">=1.59.8,<2.0.0", extras = ["proxy"], markers = "sys_platform != 'win32'" }
]
datamodel-code-generator = "^0.26.3"

[tool.poetry.extras]
Expand Down

0 comments on commit b37f282

Please sign in to comment.