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
39 changes: 26 additions & 13 deletions poetry.lock

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

35 changes: 17 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rigging"
version = "3.1.0"
version = "3.0.0"
description = "LLM Interaction Framework"
authors = ["Nick Landers <monoxgas@gmail.com>"]
license = "MIT"
Expand All @@ -17,6 +17,8 @@ pydantic-xml = "^2.11.0"
loguru = "^0.7.2"
litellm = "^1.67.2"
pandas = "^2.2.2"
eval-type-backport = "^0.2.0" # For 3.9 future annotations
elasticsearch = "^8.13.2"
xmltodict = "^0.13.0"
colorama = "^0.4.6"
boto3 = "^1.35.0"
Expand All @@ -30,7 +32,6 @@ mcp = "^1.5.0"
vllm = { version = "^0.5.0", optional = true }
transformers = { version = "^4.41.0", optional = true }
accelerate = { version = "^0.30.1", optional = true }
elasticsearch = { version = "^8.13.2", optional = true }

asyncssh = { version = "^2.14.2", optional = true }
click = { version = "^8.1.7", optional = true }
Expand All @@ -51,7 +52,6 @@ all = [
"aiodocker",
"websockets",
"logfire",
"elasticsearch",
]

[tool.poetry.group.dev.dependencies]
Expand Down Expand Up @@ -128,21 +128,20 @@ extend-exclude = [
[tool.ruff.lint]
select = [ "ALL" ]
ignore = [
"E501", # line too long (we make best effort)
"TRY003", # long messages in exception classes
"EM", # picky message construction for exceptions
"C90", # mccabe complexity
"A002", # shadowing built-in
"D", # docstrings
"ANN", # annotations (handled by mypy)
"PLR0913", # too many arguments
"ERA001", # commented out code
"FIX002", # contains todo, consider fixing
"TD002", # TODO
"TD003", # TODO
"PLR0911", # too many return statements
"FBT003", # boolean positional in function call
"COM812", # missing trailing comma in function call
"E501", # line too long (we make best effort)
"TRY003", # long messages in exception classes
"EM", # picky message construction for exceptions
"C90", # mccabe complexity
"A002", # shadowing built-in
"D", # docstrings
"ANN", # annotations (handled by mypy)
"PLR0913", # too many arguments
"ERA001", # commented out code
"FIX002", # contains todo, consider fixing
"TD002", # TODO
"TD003", # TODO
"PLR0911", # too many return statements
"FBT003", # boolean positional in function call
]

[tool.ruff.format]
Expand Down
Loading