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
2,496 changes: 1,491 additions & 1,005 deletions libs/core/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions libs/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9,<3.14"
pydantic = "^2.5"
requests = "^2.31"
openai = "^1.26"
tiktoken = "0.8.0"
tiktoken = "^0"
pyyaml = "^6"
boto3 = "^1.35.54"

Expand Down
5,733 changes: 3,549 additions & 2,184 deletions libs/llmstudio/poetry.lock

Large diffs are not rendered by default.

1,383 changes: 797 additions & 586 deletions libs/proxy/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions libs/proxy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ authors = ["Claudio Lemos <claudio.lemos@tensorops.ai>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9,<3.14"
pydantic = "^2.5"
requests = "^2.31"
fastapi = "^0.115.5"
uvicorn = "^0.27"
fastapi = "^0.128"
uvicorn = "^0.39"
python-dotenv = ">=0.4.0,<2.0.0"
toml = "^0.10"
llmstudio-core = "^1.0.0"
Expand Down
1,787 changes: 1,140 additions & 647 deletions libs/tracker/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions libs/tracker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ pydantic = "^2.5"
sqlalchemy = "^2"
toml = "^0.10"
requests = "^2.31"
fastapi = "^0.115.5"
uvicorn = "^0.27"
fastapi = "^0.128"
uvicorn = "^0.39"
sqlalchemy-bigquery = "^1.12.0"
google-cloud-bigquery-storage = "^2.27.0"
alembic = "^1.15.2"
Expand Down
4,977 changes: 3,593 additions & 1,384 deletions poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ repository = "https://github.com/tensoropsai/llmstudio"
documentation = "https://docs.llmstudio.ai"
readme = "README.md"
keywords = ["ml", "ai", "llm", "llmops", "openai", "langchain", "chatgpt", "llmstudio", "tensorops"]
package-mode = false

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tensoropsai/llmstudio/issues"

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9,<3.14"

[tool.poetry.group.dev.dependencies]
llmstudio = { path = "libs/llmstudio/", develop = true }
Expand Down
Loading