forked from LangChain-OpenTutorial/LangChain-OpenTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (65 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "langchain-opentutorial"
version = "0.0.1"
description = "LangChain OpenTutorial for Everyone."
authors = ["LangChain OpenTutorial <langchain.opentutorial@gmail.com>"]
license = "MIT License"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
python-dotenv = "1.0.1"
langchain = "0.3.13"
langgraph = "0.2.60"
langchain-openai = "0.2.14"
langchain-ollama = "0.2.2"
langchain-anthropic = "0.3.1"
langchain-upstage = "0.4.0"
langchain-cohere = "0.3.4"
langchain-milvus = "0.1.7"
langchain-google-genai = "2.0.7"
langchain-huggingface = "0.1.2"
langchain-together = "0.2.0"
faiss-cpu = "1.9.0.post1"
ragas = "0.2.9"
jupyter = "1.1.1"
notebook = "7.3.2"
chardet = "5.2.0"
markitdown = "0.0.1a3"
pypdf = "4.3.1"
llama-index-core = "0.11.23"
llama-parse = "0.5.19"
llama-index-readers-file = "0.2.2"
arxiv = "^2.1.3"
pymupdf = "^1.25.1"
neo4j = "^5.27.0"
langchain-neo4j = "^0.2.0"
langchain-mongodb = "^0.3.0"
certifi = "^2024.12.14"
python-magic-bin = { version = "^0.4.14", markers = "sys_platform != 'darwin'" }
pymongo = "^4.10.1"
langchain-qdrant = "^0.2.0"
chromadb = "^0.5.0"
pyalex = "^0.15.1"
pdfplumber = "^0.11.5"
unstructured = {extras = ["all-docs"], version = "^0.16.13"}
openai = "^1.59.7"
langchain-experimental = "^0.3.4"
tiktoken = "^0.8.0"
pytesseract = "^0.3.13"
lxml = "^5.3.0"
pillow = "^11.1.0"
pydantic = "^2.10.5"
matplotlib = "^3.10.0"
feedparser = "^6.0.11"
tavily-python = "^0.5.0"
pandas = "^2.2.3"
pinecone = {version = "5.0.1", extras = ["grpc"]}
langchain-elasticsearch = "^0.3.1"
anytree = "2.12.1"
langchain-chroma = "^0.2.0"
olefile = "^0.47"
pdf2image = "^1.17.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"