-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (90 loc) · 3.46 KB
/
pyproject.toml
File metadata and controls
108 lines (90 loc) · 3.46 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentic-memory-design"
version = "1.0.0"
description = "Agentic Memory Design — multi-memory AI assistant with routing engine, RAG, CRM, and observability"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Zuu Crew" }]
dependencies = [
# ── Core LLM & Embedding Services ────────────────────────────
"openai>=1.12.0",
"anthropic>=0.18.0",
"cohere>=4.47",
# ── LangChain Ecosystem ──────────────────────────────────────
"langchain>=0.1.0",
"langchain-core>=0.1.0",
"langchain-community>=0.0.20",
"langchain-openai>=0.0.5",
"langchain-text-splitters>=0.2.0",
# ── Web Crawling & Content Extraction ────────────────────────
"playwright>=1.40.0",
"beautifulsoup4>=4.12.0",
"markdownify>=0.11.6",
"lxml>=5.1.0",
"nest-asyncio>=1.5.0",
# ── Vector Store & Semantic Search ───────────────────────────
"supabase>=2.3.0",
"psycopg2-binary>=2.9.9",
"pgvector>=0.2.4",
"qdrant-client>=1.9.0",
"sentence-transformers>=2.3.1",
# ── Text Processing & Tokenization ───────────────────────────
"tiktoken>=0.5.2",
"nltk>=3.8.1",
"spacy>=3.7.0",
# ── Configuration & Environment ──────────────────────────────
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
# ── Utilities ────────────────────────────────────────────────
"tqdm>=4.66.0",
"pandas>=2.2.0",
"numpy>=1.26.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
# ── Memory & Database ─────────────────────────────────────────
"sqlalchemy>=2.0.0",
"pytz>=2024.1",
"python-dateutil>=2.8.0",
# ── Web Search ─────────────────────────────────────────────────
"tavily-python>=0.3.0",
# ── Observability & Logging ──────────────────────────────────
"langfuse>=2.0.0",
"loguru>=0.7.0",
]
[project.optional-dependencies]
jupyter = [
"jupyter>=1.0.0",
"ipykernel>=6.29.0",
"ipywidgets>=8.1.1",
"notebook>=7.0.0",
]
dev = [
"black>=24.1.0",
"flake8>=7.0.0",
"mypy>=1.8.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
# ── Tool Configuration ──────────────────────────────────────────────
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203", "W503"]