mirror of
https://github.com/Laurent2916/nio-llm.git
synced 2024-11-09 23:12:05 +00:00
➕ add click as dependency
This commit is contained in:
parent
0e5c392c1b
commit
d1b3b55ee3
10
poetry.lock
generated
10
poetry.lock
generated
|
@ -321,7 +321,7 @@ files = [
|
||||||
name = "click"
|
name = "click"
|
||||||
version = "8.1.3"
|
version = "8.1.3"
|
||||||
description = "Composable command line interface toolkit"
|
description = "Composable command line interface toolkit"
|
||||||
category = "dev"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.7"
|
python-versions = ">=3.7"
|
||||||
files = [
|
files = [
|
||||||
|
@ -336,7 +336,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
||||||
name = "colorama"
|
name = "colorama"
|
||||||
version = "0.4.6"
|
version = "0.4.6"
|
||||||
description = "Cross-platform colored terminal text."
|
description = "Cross-platform colored terminal text."
|
||||||
category = "dev"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
||||||
files = [
|
files = [
|
||||||
|
@ -543,13 +543,13 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "llama-cpp-python"
|
name = "llama-cpp-python"
|
||||||
version = "0.1.51"
|
version = "0.1.52"
|
||||||
description = "A Python wrapper for llama.cpp"
|
description = "A Python wrapper for llama.cpp"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.7"
|
python-versions = ">=3.7"
|
||||||
files = [
|
files = [
|
||||||
{file = "llama_cpp_python-0.1.51.tar.gz", hash = "sha256:97b933df56645722773b47033e94cd0ab2b72ec6a9562596ab5a6c5c6486ff6b"},
|
{file = "llama_cpp_python-0.1.52.tar.gz", hash = "sha256:7869c8f63a6d8ed494de4ee47f74dbf4fa14b7ca5c5d8b1c0e1d87b1d9239139"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
|
@ -990,4 +990,4 @@ multidict = ">=4.0"
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = "^3.11"
|
python-versions = "^3.11"
|
||||||
content-hash = "c3f3058bdabb57a6bdcad19cf8132e1e999f49031c6a824ca8d27200a53eb345"
|
content-hash = "739fdd65d4023f517ed829904590bc3940e74ae427f11c69819899b4d363f073"
|
||||||
|
|
|
@ -10,6 +10,7 @@ version = "0.1.0"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
|
click = "^8.1.3"
|
||||||
matrix-nio = "^0.20.2"
|
matrix-nio = "^0.20.2"
|
||||||
llama-cpp-python = "^0.1.50"
|
llama-cpp-python = "^0.1.50"
|
||||||
|
|
||||||
|
@ -23,6 +24,7 @@ isort = "^5.12.0"
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
|
ignore = ["G004"]
|
||||||
select = [
|
select = [
|
||||||
"A", # flake8-builtins
|
"A", # flake8-builtins
|
||||||
"B", # flake8-bugbear
|
"B", # flake8-bugbear
|
||||||
|
|
Loading…
Reference in a new issue