-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.34 KB
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
52
53
54
55
56
57
58
[tool.poetry]
name = "examples"
version = "0.3.14"
description = ""
authors = ["Pasquale Antonante <pasquale@relari.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
chromadb = "^0.4.22"
continuous-eval = "^0.3.14"
# continuous-eval = {path = "../continuous-eval", develop = true}
tqdm = "^4.66.1"
loguru = "^0.7.2"
## Langchain
unstructured = "^0.16.11"
langchain-chroma = "^0.1.4"
llama-index-agent-openai = "^0.4.1"
llama-index-llms-openai = "^0.3.12"
[tool.poetry.group.langchain]
optional = true
[tool.poetry.group.langchain.dependencies]
langchain-community = "^0.3.13"
langchain-openai = "^0.2.14"
langchain-anthropic = "^0.3.1"
langchain-google-genai = "^2.0.7"
langchain-cohere = "^0.3.4"
langchain = "^0.3.13"
cohere = "^5.13.4"
rank-bm25 = "^0.2.2"
## Llama Index
[tool.poetry.group.llama-index]
optional = true
[tool.poetry.group.llama-index.dependencies]
llama-index = "^0.12.8"
llama-index-llms-openai = "^0.3.12"
## Haystack
[tool.poetry.group.haystack]
optional = true
[tool.poetry.group.haystack.dependencies]
haystack-ai = "^2.8.0"
sentence-transformers = ">=2.2.0"
## Swarm
[tool.poetry.group.swarm]
optional = true
[tool.poetry.group.swarm.dependencies]
swarm = {git = "https://github.com/openai/swarm.git", python = ">=3.10,<3.12"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"