forked from Proxy-Pointer/Proxy-Pointer-RAG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (83 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (83 loc) · 1.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "pprag"
version = "0.1.1"
description = "Proxy-Pointer RAG suite for text, multimodal, and cross-document comparison workflows"
readme = "README.md"
authors = [
{ name = "Partha Sarkar", email = "partha.sarkarx@gmail.com" }
]
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
text = [
"google-generativeai",
"langchain-community",
"langchain-core",
"langchain-text-splitters",
"faiss-cpu",
"python-dotenv",
"pandas",
"openpyxl",
"llama-cloud",
]
multimodal = [
"streamlit",
"google-generativeai",
"pillow",
"python-dotenv",
"faiss-cpu",
"numpy",
"markdown",
"langchain-community",
"langchain-core",
"langchain-text-splitters",
"pdfservices-sdk",
]
compare = [
"google-generativeai",
"langchain-community",
"langchain-core",
"langchain-text-splitters",
"faiss-cpu",
"python-dotenv",
"streamlit",
"llama-cloud",
]
full = [
"google-generativeai",
"langchain-community",
"langchain-core",
"langchain-text-splitters",
"faiss-cpu",
"python-dotenv",
"pandas",
"openpyxl",
"llama-cloud",
"streamlit",
"pillow",
"numpy",
"markdown",
"pdfservices-sdk",
]
[project.scripts]
pprag = "pprag.cli:main"
[dependency-groups]
test = [
"pytest>=9.0.0",
]
[build-system]
requires = ["uv_build>=0.11.14,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = [
"pprag",
"pprag_text_only",
"pprag_multimodal",
"pprag_doc_comparator",
]
[tool.uv.workspace]
members = [
"DocComparator",
"MultiModal",
"Text-Only",
]