-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (43 loc) · 1.17 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "examples"
version = "0.1.0"
description = ""
authors = ["Pasquale Antonante <p.antonante@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9.0,<3.12"
chromadb = "^0.4.22"
continuous-eval = "^0.3.0"
# continuous-eval = {path = "../continuous-eval", develop = true}
unstructured = {extras = ["pdf"], version = "^0.13.7"}
tqdm = "^4.66.1"
loguru = "^0.7.2"
pyyaml = "^6.0.1"
## Langchain
[tool.poetry.group.langchain]
optional = true
[tool.poetry.group.langchain.dependencies]
langchain-community = "^0.0.29"
langchain-openai = "^0.1.7"
langchain-anthropic = "^0.1.0"
langchain-google-genai = "^0.0.6"
langchain = "^0.1.5"
cohere = "^4.47"
rank-bm25 = "^0.2.2"
## Llama Index
[tool.poetry.group.llama-index]
optional = true
[tool.poetry.group.llama-index.dependencies]
llama-index = "^0.10.4"
llama-index-agent-openai-legacy = "^0.1.1"
llama-index-agent-openai = "^0.1.1"
llama-index-llms-openai = "^0.1.1"
## Haystack
[tool.poetry.group.haystack]
optional = true
[tool.poetry.group.haystack.dependencies]
haystack-ai = "^2.2.3"
sentence-transformers = ">=2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"