2023-06-27 13:55:53 -07:00
|
|
|
[tool.poetry]
|
|
|
|
name = "ollama"
|
2023-06-30 16:28:20 -04:00
|
|
|
version = "0.0.9"
|
2023-06-28 11:43:14 -04:00
|
|
|
description = "Run ai models locally"
|
2023-06-28 09:51:04 -07:00
|
|
|
authors = ["ollama team"]
|
2023-06-27 13:55:53 -07:00
|
|
|
readme = "README.md"
|
|
|
|
packages = [{include = "ollama"}]
|
|
|
|
scripts = {ollama = "ollama.cmd.cli:main"}
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-06-28 14:46:07 -07:00
|
|
|
python = "^3.8"
|
2023-06-28 17:59:23 -07:00
|
|
|
aiohttp = "^3.8.4"
|
|
|
|
aiohttp-cors = "^0.7.0"
|
2023-06-27 15:46:05 -07:00
|
|
|
jinja2 = "^3.1.2"
|
2023-06-28 12:13:13 -04:00
|
|
|
requests = "^2.31.0"
|
|
|
|
tqdm = "^4.65.0"
|
2023-06-28 20:38:03 -04:00
|
|
|
validators = "^0.20.0"
|
2023-06-29 16:34:50 -04:00
|
|
|
yaspin = "^2.3.0"
|
2023-06-28 17:25:24 -07:00
|
|
|
llama-cpp-python = "^0.1.67"
|
|
|
|
ctransformers = "^0.2.10"
|
2023-07-05 11:13:44 -07:00
|
|
|
thefuzz = {version = "^0.19.0", extras = ["speedup"]}
|
2023-06-27 13:55:53 -07:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|