-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (41 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
42 lines (41 loc) · 848 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
35
36
37
38
39
40
41
42
[project]
name = "deep-research"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"feedparser>=6.0.11",
"google-adk>=1.13.0",
"pydantic>=2.11.7",
"pypdf2>=3.0.1",
"aiofiles>=24.1.0",
"google-generativeai>=0.8.5",
"qdrant-client>=1.15.1",
"openai>=1.102.0",
"tavily-python>=0.7.11",
"pre-commit>=4.3.0",
]
[project.optional-dependencies]
qdrant = [
"qdrant-client>=1.7.0",
]
gcs = [
"google-cloud-storage>=2.10.0",
]
vertex-ai = [
"google-cloud-aiplatform>=1.38.0",
]
google-ai = [
"google-generativeai>=0.3.0",
]
openai = [
"openai>=1.0.0",
]
all = [
"qdrant-client>=1.7.0",
"google-cloud-storage>=2.10.0",
"google-cloud-aiplatform>=1.38.0",
"google-generativeai>=0.3.0",
"openai>=1.0.0",
]