-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 751 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kava"
version = "0.0.1"
description = "Generative Search Engine"
requires-python = ">=3.10"
dependencies = [
# core
"torch>=2.2.1",
"transformers>=4.38.0",
"accelerate>=0.28.0",
"peft>=0.10.0",
"datasets>=2.18.0",
"sentence-transformers>=2.6.0",
"faiss-gpu>=1.7.2",
"llama-index-core>=0.10.12",
# store
"psycopg>=3.1.18",
"pgvector>=0.2.5",
# crawling
"beautifulsoup4>=4.12.3",
"lxml>=5.1.0",
# tools
"tqdm>=4.65.0",
]
[tool.mypy]
[[tool.mypy.overrides]]
module = "transformers.*,sentence_transformers.*,faiss.*,datasets.*,pgvector.psycopg.*"
ignore_missing_imports = true