akarpov/search/pyproject.toml

19 lines
476 B
TOML
Raw Normal View History

2023-11-06 20:11:15 +03:00
[tool.poetry]
name = "search"
version = "0.1.0"
description = ""
authors = ["Alexander-D-Karpov <alexandr.d.karpov@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "0.99.1"
pydantic = "1.10.13"
2023-11-07 16:13:59 +03:00
transformers = {version = "4.34.1", extras = ["torch"]}
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
farm-haystack = {extras = ["faiss"], version = "^1.21.2"}
2023-11-06 20:11:15 +03:00
[build-system]
2023-11-07 16:13:59 +03:00
requires = ["poetry-core>=1.0.0"]
2023-11-06 20:11:15 +03:00
build-backend = "poetry.core.masonry.api"