-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (59 loc) · 2.14 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
59
60
61
62
63
64
[tool.poetry]
name = "pageindex"
version = "0.2.10"
description = "Python SDK for PageIndex — reasoning-based, vectorless document retrieval, cloud and local"
readme = "README.md"
license = "MIT"
authors = ["Ray <ray@vectify.ai>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["rag", "document", "retrieval", "llm", "pageindex", "vectorless"]
packages = [{ include = "pageindex" }]
include = [
{ path = "pageindex/config.yaml", format = ["sdist", "wheel"] },
{ path = "pageindex/flash/data/*.json", format = ["sdist", "wheel"] },
]
exclude = ["pageindex/flash/assets"]
[tool.poetry.dependencies]
python = ">=3.7"
requests = ">=2.28.0"
openai = ">=1.70.0"
litellm = ">=1.84.0"
PyPDF2 = ">=3.0.0"
pypdfium2 = ">=4.30.0"
sortedcontainers = ">=2.4.0"
regex = ">=2024.0.0"
python-dotenv = ">=1.0.0"
pyyaml = ">=6.0"
# Older releases break string prompts with SDK MCP servers (#597, #780).
claude-agent-sdk = { version = ">=0.1.53", optional = true }
# Older releases crash on current openai before the request is sent.
openai-agents = { version = ">=0.18.1", optional = true }
# Older releases execute a refusal turn's tool_use blocks.
anthropic = { version = ">=0.108.0", optional = true }
[tool.poetry.extras]
claude = ["claude-agent-sdk"]
openai = ["openai-agents"]
anthropic = ["anthropic"]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0"
[tool.poetry.urls]
Repository = "https://github.com/VectifyAI/PageIndex"
Homepage = "https://pageindex.ai"
Documentation = "https://docs.pageindex.ai"
Issues = "https://github.com/VectifyAI/PageIndex/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"