remove server extras for now

This commit is contained in:
Michael Yang
2023-06-28 17:59:23 -07:00
parent 77eddba5b3
commit 3d76b6bb28
3 changed files with 349 additions and 31 deletions

View File

@@ -10,16 +10,12 @@ scripts = {ollama = "ollama.cmd.cli:main"}
[tool.poetry.dependencies]
python = "^3.8"
llama-cpp-python = "^0.1.66"
aiohttp = "^3.8.4"
aiohttp-cors = "^0.7.0"
jinja2 = "^3.1.2"
aiohttp = {version = "^3.8.4", optional = true}
aiohttp-cors = {version = "^0.7.0", optional = true}
requests = "^2.31.0"
tqdm = "^4.65.0"
[tool.poetry.extras]
server = ["aiohttp", "aiohttp_cors"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"