-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
151 lines (143 loc) · 4.36 KB
/
pyproject.toml
File metadata and controls
151 lines (143 loc) · 4.36 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dhee"
version = "7.2.1"
description = "Dhee - world memory layer and context compiler for AI agents"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Sankhya AI Labs"}
]
keywords = ["world-memory", "context-compiler", "developer-brain", "coding-agents", "mcp", "claude-code", "codex", "chotu", "local-first", "memory-layer", "ai", "agents"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pydantic>=2.0",
"requests>=2.28.0",
"pyyaml>=6.0",
"cryptography>=42.0.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"python-multipart>=0.0.9",
"kuzu>=0.11.3",
"tree-sitter>=0.23.2,<0.26",
"tree-sitter-python>=0.23.6,<0.26",
"tree-sitter-javascript>=0.23.1,<0.26",
"tree-sitter-typescript>=0.23.2,<0.26",
]
[project.optional-dependencies]
# LLM / embedding providers (install what you use)
gemini = ["google-genai>=1.0.0"]
openai = ["openai>=1.0.0"]
elevenlabs = ["elevenlabs>=2.49.0"]
ollama = ["ollama>=0.4.0"]
# Internal providers (not documented, still functional)
nvidia = ["openai>=1.0.0"]
zvec = ["zvec>=0.4.0; python_version >= '3.11'"]
sqlite_vec = ["sqlite-vec>=0.1.1"]
graph = ["kuzu>=0.11.3"]
swe = [
"tree-sitter>=0.23.2,<0.26",
"tree-sitter-python>=0.23.6,<0.26",
"tree-sitter-javascript>=0.23.1,<0.26",
"tree-sitter-typescript>=0.23.2,<0.26",
]
# Local Qwen stack (CPU-native, zero API cost)
local = ["llama-cpp-python>=0.3", "sentence-transformers>=3.0"]
# Integrations
# `mcp>=1.0.0` requires Python 3.10+, while Dhee's core package supports 3.9.
mcp = ["mcp>=1.0.0; python_version >= '3.10'"]
api = ["fastapi>=0.100.0", "uvicorn>=0.20.0", "python-multipart>=0.0.9", "httpx>=0.25.0", "websockets>=12.0"]
# Handoff bus ships inside Dhee's wheel. Keep the extra as a no-op
# compatibility alias so `pip install dhee[bus]` remains valid.
bus = []
benchmarks = ["huggingface_hub>=0.24.0"]
# Edge/hardware deployment (offline, ONNX embedder)
edge = ["onnxruntime>=1.16"]
# Training (QLoRA fine-tuning)
training = ["unsloth", "datasets>=2.0", "trl>=0.7", "peft>=0.6"]
app = [
"openai>=1.0.0",
"google-genai>=1.0.0",
"ollama>=0.4.0",
]
all = [
"google-genai>=1.0.0",
"openai>=1.0.0",
"elevenlabs>=2.49.0",
"ollama>=0.4.0",
"zvec>=0.4.0; python_version >= '3.11'",
"mcp>=1.0.0; python_version >= '3.10'",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"python-multipart>=0.0.9",
"kuzu>=0.11.3",
"huggingface_hub>=0.24.0",
"llama-cpp-python>=0.3",
"sentence-transformers>=3.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"openai>=1.0.0",
"huggingface_hub>=0.24.0",
"build>=1.0.0",
"twine>=5.0.0",
]
[project.scripts]
dhee = "dhee.cli:main"
dhee-ui = "dhee.ui.cli:main"
dhee-mcp = "dhee.mcp_slim:run"
dhee-mcp-full = "dhee.mcp_server:run"
dhee-debugger-api = "dhee.debugger_api:run"
engram-bus = "engram_bus.server:main"
[project.urls]
Homepage = "https://github.com/Sankhya-AI/Dhee"
Repository = "https://github.com/Sankhya-AI/Dhee"
Issues = "https://github.com/Sankhya-AI/Dhee/issues"
Documentation = "https://github.com/Sankhya-AI/Dhee#readme"
Changelog = "https://github.com/Sankhya-AI/Dhee/blob/main/CHANGELOG.md"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = [".", "engram-bus"]
include = ["dhee*", "engram*", "engram_bus*"]
exclude = [
"engram-bus*",
"engram-bridge*",
"engram-enterprise*",
"engram-failure*",
"engram-heartbeat*",
"engram-identity*",
"engram-metamemory*",
"engram-policy*",
]
[tool.setuptools.package-data]
"dhee.ui" = [
"web/dist/*",
"web/dist/assets/*",
"web/public/*",
"web/*.html",
"web/*.json",
"web/*.ts",
"web/src/*",
"web/src/components/*",
"web/src/components/canvas/*",
"web/src/components/cards/*",
"web/src/components/graph/*",
"web/src/components/ui/*",
"web/src/views/*",
]