-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 998 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
[project]
name = "my_langchain"
version = "0.1.0"
description = ""
authors = [
{name = "Bruno Goncalves",email = "bgoncalves@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"jupyter (>=1.1.1,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"matplotlib (>=3.10.3,<4.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
"watermark (>=2.5.0,<3.0.0)",
"openai (>=1.78.1,<2.0.0)",
"transformers (>=4.52.3,<5.0.0)",
"torch (>=2.7.0,<3.0.0)",
"langchain (>=1.2.10,<2.0.0)",
"langchain-community (>=0.4.1,<1.0.0)",
"langchain-openai (>=1.1.9,<2.0.0)",
"langchain-anthropic (>=1.3.3,<2.0.0)",
"langchain-core (>=1.2.11,<2.0.0)",
"langchain-text-splitters (>=1.1.0,<2.0.0)",
"langchain-huggingface (>=1.2.0,<2.0.0)",
"sentence-transformers (>=4.1.0,<5.0.0)",
"chromadb (>=1.0.11,<2.0.0)",
"duckduckgo-search (>=8.0.2,<9.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"