superlocalmemory 3.4.1 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pyproject.toml +11 -2
- package/scripts/postinstall.js +26 -7
- package/src/superlocalmemory/cli/commands.py +42 -60
- package/src/superlocalmemory/cli/daemon.py +107 -47
- package/src/superlocalmemory/cli/main.py +10 -0
- package/src/superlocalmemory/cli/setup_wizard.py +137 -9
- package/src/superlocalmemory/core/config.py +28 -0
- package/src/superlocalmemory/core/consolidation_engine.py +38 -1
- package/src/superlocalmemory/core/engine.py +9 -0
- package/src/superlocalmemory/core/health_monitor.py +313 -0
- package/src/superlocalmemory/core/reranker_worker.py +19 -5
- package/src/superlocalmemory/ingestion/__init__.py +13 -0
- package/src/superlocalmemory/ingestion/adapter_manager.py +234 -0
- package/src/superlocalmemory/ingestion/base_adapter.py +177 -0
- package/src/superlocalmemory/ingestion/calendar_adapter.py +340 -0
- package/src/superlocalmemory/ingestion/credentials.py +118 -0
- package/src/superlocalmemory/ingestion/gmail_adapter.py +369 -0
- package/src/superlocalmemory/ingestion/parsers.py +100 -0
- package/src/superlocalmemory/ingestion/transcript_adapter.py +156 -0
- package/src/superlocalmemory/learning/consolidation_worker.py +47 -1
- package/src/superlocalmemory/learning/entity_compiler.py +377 -0
- package/src/superlocalmemory/mesh/__init__.py +12 -0
- package/src/superlocalmemory/mesh/broker.py +344 -0
- package/src/superlocalmemory/retrieval/entity_channel.py +12 -6
- package/src/superlocalmemory/server/api.py +6 -7
- package/src/superlocalmemory/server/routes/entity.py +95 -0
- package/src/superlocalmemory/server/routes/ingest.py +110 -0
- package/src/superlocalmemory/server/routes/mesh.py +186 -0
- package/src/superlocalmemory/server/unified_daemon.py +691 -0
- package/src/superlocalmemory/storage/schema_v343.py +229 -0
- package/src/superlocalmemory.egg-info/PKG-INFO +0 -597
- package/src/superlocalmemory.egg-info/SOURCES.txt +0 -287
- package/src/superlocalmemory.egg-info/dependency_links.txt +0 -1
- package/src/superlocalmemory.egg-info/entry_points.txt +0 -2
- package/src/superlocalmemory.egg-info/requires.txt +0 -47
- package/src/superlocalmemory.egg-info/top_level.txt +0 -1
|
@@ -1,287 +0,0 @@
|
|
|
1
|
-
AUTHORS.md
|
|
2
|
-
LICENSE
|
|
3
|
-
NOTICE
|
|
4
|
-
README.md
|
|
5
|
-
pyproject.toml
|
|
6
|
-
src/superlocalmemory/__init__.py
|
|
7
|
-
src/superlocalmemory.egg-info/PKG-INFO
|
|
8
|
-
src/superlocalmemory.egg-info/SOURCES.txt
|
|
9
|
-
src/superlocalmemory.egg-info/dependency_links.txt
|
|
10
|
-
src/superlocalmemory.egg-info/entry_points.txt
|
|
11
|
-
src/superlocalmemory.egg-info/requires.txt
|
|
12
|
-
src/superlocalmemory.egg-info/top_level.txt
|
|
13
|
-
src/superlocalmemory/attribution/__init__.py
|
|
14
|
-
src/superlocalmemory/attribution/mathematical_dna.py
|
|
15
|
-
src/superlocalmemory/attribution/signer.py
|
|
16
|
-
src/superlocalmemory/attribution/watermark.py
|
|
17
|
-
src/superlocalmemory/cli/__init__.py
|
|
18
|
-
src/superlocalmemory/cli/commands.py
|
|
19
|
-
src/superlocalmemory/cli/daemon.py
|
|
20
|
-
src/superlocalmemory/cli/json_output.py
|
|
21
|
-
src/superlocalmemory/cli/main.py
|
|
22
|
-
src/superlocalmemory/cli/migrate_cmd.py
|
|
23
|
-
src/superlocalmemory/cli/pending_store.py
|
|
24
|
-
src/superlocalmemory/cli/post_install.py
|
|
25
|
-
src/superlocalmemory/cli/setup_wizard.py
|
|
26
|
-
src/superlocalmemory/code_graph/__init__.py
|
|
27
|
-
src/superlocalmemory/code_graph/blast_radius.py
|
|
28
|
-
src/superlocalmemory/code_graph/changes.py
|
|
29
|
-
src/superlocalmemory/code_graph/communities.py
|
|
30
|
-
src/superlocalmemory/code_graph/config.py
|
|
31
|
-
src/superlocalmemory/code_graph/database.py
|
|
32
|
-
src/superlocalmemory/code_graph/flows.py
|
|
33
|
-
src/superlocalmemory/code_graph/git_hooks.py
|
|
34
|
-
src/superlocalmemory/code_graph/graph_engine.py
|
|
35
|
-
src/superlocalmemory/code_graph/graph_store.py
|
|
36
|
-
src/superlocalmemory/code_graph/incremental.py
|
|
37
|
-
src/superlocalmemory/code_graph/models.py
|
|
38
|
-
src/superlocalmemory/code_graph/parser.py
|
|
39
|
-
src/superlocalmemory/code_graph/resolver.py
|
|
40
|
-
src/superlocalmemory/code_graph/search.py
|
|
41
|
-
src/superlocalmemory/code_graph/service.py
|
|
42
|
-
src/superlocalmemory/code_graph/watcher.py
|
|
43
|
-
src/superlocalmemory/code_graph/bridge/__init__.py
|
|
44
|
-
src/superlocalmemory/code_graph/bridge/entity_resolver.py
|
|
45
|
-
src/superlocalmemory/code_graph/bridge/event_listeners.py
|
|
46
|
-
src/superlocalmemory/code_graph/bridge/fact_enricher.py
|
|
47
|
-
src/superlocalmemory/code_graph/bridge/hebbian_linker.py
|
|
48
|
-
src/superlocalmemory/code_graph/bridge/temporal_checker.py
|
|
49
|
-
src/superlocalmemory/code_graph/extractors/__init__.py
|
|
50
|
-
src/superlocalmemory/code_graph/extractors/python.py
|
|
51
|
-
src/superlocalmemory/code_graph/extractors/typescript.py
|
|
52
|
-
src/superlocalmemory/compliance/__init__.py
|
|
53
|
-
src/superlocalmemory/compliance/abac.py
|
|
54
|
-
src/superlocalmemory/compliance/audit.py
|
|
55
|
-
src/superlocalmemory/compliance/eu_ai_act.py
|
|
56
|
-
src/superlocalmemory/compliance/gdpr.py
|
|
57
|
-
src/superlocalmemory/compliance/lifecycle.py
|
|
58
|
-
src/superlocalmemory/compliance/retention.py
|
|
59
|
-
src/superlocalmemory/compliance/scheduler.py
|
|
60
|
-
src/superlocalmemory/core/__init__.py
|
|
61
|
-
src/superlocalmemory/core/config.py
|
|
62
|
-
src/superlocalmemory/core/consolidation_engine.py
|
|
63
|
-
src/superlocalmemory/core/embedding_worker.py
|
|
64
|
-
src/superlocalmemory/core/embeddings.py
|
|
65
|
-
src/superlocalmemory/core/engine.py
|
|
66
|
-
src/superlocalmemory/core/engine_wiring.py
|
|
67
|
-
src/superlocalmemory/core/graph_analyzer.py
|
|
68
|
-
src/superlocalmemory/core/hooks.py
|
|
69
|
-
src/superlocalmemory/core/maintenance.py
|
|
70
|
-
src/superlocalmemory/core/maintenance_scheduler.py
|
|
71
|
-
src/superlocalmemory/core/modes.py
|
|
72
|
-
src/superlocalmemory/core/ollama_embedder.py
|
|
73
|
-
src/superlocalmemory/core/profiles.py
|
|
74
|
-
src/superlocalmemory/core/recall_pipeline.py
|
|
75
|
-
src/superlocalmemory/core/recall_worker.py
|
|
76
|
-
src/superlocalmemory/core/registry.py
|
|
77
|
-
src/superlocalmemory/core/reranker_worker.py
|
|
78
|
-
src/superlocalmemory/core/store_pipeline.py
|
|
79
|
-
src/superlocalmemory/core/summarizer.py
|
|
80
|
-
src/superlocalmemory/core/worker_pool.py
|
|
81
|
-
src/superlocalmemory/dynamics/__init__.py
|
|
82
|
-
src/superlocalmemory/dynamics/activation_guided_quantization.py
|
|
83
|
-
src/superlocalmemory/dynamics/eap_scheduler.py
|
|
84
|
-
src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py
|
|
85
|
-
src/superlocalmemory/dynamics/fisher_langevin_coupling.py
|
|
86
|
-
src/superlocalmemory/encoding/__init__.py
|
|
87
|
-
src/superlocalmemory/encoding/auto_linker.py
|
|
88
|
-
src/superlocalmemory/encoding/cognitive_consolidator.py
|
|
89
|
-
src/superlocalmemory/encoding/consolidator.py
|
|
90
|
-
src/superlocalmemory/encoding/context_generator.py
|
|
91
|
-
src/superlocalmemory/encoding/emotional.py
|
|
92
|
-
src/superlocalmemory/encoding/entity_resolver.py
|
|
93
|
-
src/superlocalmemory/encoding/entropy_gate.py
|
|
94
|
-
src/superlocalmemory/encoding/fact_extractor.py
|
|
95
|
-
src/superlocalmemory/encoding/foresight.py
|
|
96
|
-
src/superlocalmemory/encoding/graph_builder.py
|
|
97
|
-
src/superlocalmemory/encoding/observation_builder.py
|
|
98
|
-
src/superlocalmemory/encoding/scene_builder.py
|
|
99
|
-
src/superlocalmemory/encoding/signal_inference.py
|
|
100
|
-
src/superlocalmemory/encoding/temporal_parser.py
|
|
101
|
-
src/superlocalmemory/encoding/temporal_validator.py
|
|
102
|
-
src/superlocalmemory/encoding/type_router.py
|
|
103
|
-
src/superlocalmemory/hooks/__init__.py
|
|
104
|
-
src/superlocalmemory/hooks/auto_capture.py
|
|
105
|
-
src/superlocalmemory/hooks/auto_invoker.py
|
|
106
|
-
src/superlocalmemory/hooks/auto_parameterize.py
|
|
107
|
-
src/superlocalmemory/hooks/auto_recall.py
|
|
108
|
-
src/superlocalmemory/hooks/claude_code_hooks.py
|
|
109
|
-
src/superlocalmemory/hooks/hook_handlers.py
|
|
110
|
-
src/superlocalmemory/hooks/ide_connector.py
|
|
111
|
-
src/superlocalmemory/hooks/rules_engine.py
|
|
112
|
-
src/superlocalmemory/infra/__init__.py
|
|
113
|
-
src/superlocalmemory/infra/auth_middleware.py
|
|
114
|
-
src/superlocalmemory/infra/backup.py
|
|
115
|
-
src/superlocalmemory/infra/cache_manager.py
|
|
116
|
-
src/superlocalmemory/infra/event_bus.py
|
|
117
|
-
src/superlocalmemory/infra/heartbeat_monitor.py
|
|
118
|
-
src/superlocalmemory/infra/pid_manager.py
|
|
119
|
-
src/superlocalmemory/infra/process_reaper.py
|
|
120
|
-
src/superlocalmemory/infra/rate_limiter.py
|
|
121
|
-
src/superlocalmemory/infra/webhook_dispatcher.py
|
|
122
|
-
src/superlocalmemory/learning/__init__.py
|
|
123
|
-
src/superlocalmemory/learning/adaptive.py
|
|
124
|
-
src/superlocalmemory/learning/behavioral.py
|
|
125
|
-
src/superlocalmemory/learning/behavioral_listener.py
|
|
126
|
-
src/superlocalmemory/learning/bootstrap.py
|
|
127
|
-
src/superlocalmemory/learning/consolidation_quantization_worker.py
|
|
128
|
-
src/superlocalmemory/learning/consolidation_worker.py
|
|
129
|
-
src/superlocalmemory/learning/cross_project.py
|
|
130
|
-
src/superlocalmemory/learning/database.py
|
|
131
|
-
src/superlocalmemory/learning/engagement.py
|
|
132
|
-
src/superlocalmemory/learning/features.py
|
|
133
|
-
src/superlocalmemory/learning/feedback.py
|
|
134
|
-
src/superlocalmemory/learning/forgetting_scheduler.py
|
|
135
|
-
src/superlocalmemory/learning/outcomes.py
|
|
136
|
-
src/superlocalmemory/learning/project_context.py
|
|
137
|
-
src/superlocalmemory/learning/quantization_scheduler.py
|
|
138
|
-
src/superlocalmemory/learning/ranker.py
|
|
139
|
-
src/superlocalmemory/learning/signals.py
|
|
140
|
-
src/superlocalmemory/learning/source_quality.py
|
|
141
|
-
src/superlocalmemory/learning/workflows.py
|
|
142
|
-
src/superlocalmemory/llm/__init__.py
|
|
143
|
-
src/superlocalmemory/llm/backbone.py
|
|
144
|
-
src/superlocalmemory/math/__init__.py
|
|
145
|
-
src/superlocalmemory/math/ebbinghaus.py
|
|
146
|
-
src/superlocalmemory/math/fisher.py
|
|
147
|
-
src/superlocalmemory/math/fisher_quantized.py
|
|
148
|
-
src/superlocalmemory/math/hopfield.py
|
|
149
|
-
src/superlocalmemory/math/langevin.py
|
|
150
|
-
src/superlocalmemory/math/polar_quant.py
|
|
151
|
-
src/superlocalmemory/math/qjl.py
|
|
152
|
-
src/superlocalmemory/math/sheaf.py
|
|
153
|
-
src/superlocalmemory/math/turbo_quant.py
|
|
154
|
-
src/superlocalmemory/mcp/__init__.py
|
|
155
|
-
src/superlocalmemory/mcp/resources.py
|
|
156
|
-
src/superlocalmemory/mcp/server.py
|
|
157
|
-
src/superlocalmemory/mcp/shared.py
|
|
158
|
-
src/superlocalmemory/mcp/tools.py
|
|
159
|
-
src/superlocalmemory/mcp/tools_active.py
|
|
160
|
-
src/superlocalmemory/mcp/tools_code_graph.py
|
|
161
|
-
src/superlocalmemory/mcp/tools_core.py
|
|
162
|
-
src/superlocalmemory/mcp/tools_v28.py
|
|
163
|
-
src/superlocalmemory/mcp/tools_v3.py
|
|
164
|
-
src/superlocalmemory/mcp/tools_v33.py
|
|
165
|
-
src/superlocalmemory/parameterization/__init__.py
|
|
166
|
-
src/superlocalmemory/parameterization/pattern_extractor.py
|
|
167
|
-
src/superlocalmemory/parameterization/pii_filter.py
|
|
168
|
-
src/superlocalmemory/parameterization/prompt_injector.py
|
|
169
|
-
src/superlocalmemory/parameterization/prompt_lifecycle.py
|
|
170
|
-
src/superlocalmemory/parameterization/soft_prompt_generator.py
|
|
171
|
-
src/superlocalmemory/retrieval/__init__.py
|
|
172
|
-
src/superlocalmemory/retrieval/agentic.py
|
|
173
|
-
src/superlocalmemory/retrieval/ann_index.py
|
|
174
|
-
src/superlocalmemory/retrieval/bm25_channel.py
|
|
175
|
-
src/superlocalmemory/retrieval/bridge_discovery.py
|
|
176
|
-
src/superlocalmemory/retrieval/channel_registry.py
|
|
177
|
-
src/superlocalmemory/retrieval/engine.py
|
|
178
|
-
src/superlocalmemory/retrieval/entity_channel.py
|
|
179
|
-
src/superlocalmemory/retrieval/forgetting_filter.py
|
|
180
|
-
src/superlocalmemory/retrieval/fusion.py
|
|
181
|
-
src/superlocalmemory/retrieval/hopfield_channel.py
|
|
182
|
-
src/superlocalmemory/retrieval/profile_channel.py
|
|
183
|
-
src/superlocalmemory/retrieval/quantization_aware_search.py
|
|
184
|
-
src/superlocalmemory/retrieval/reranker.py
|
|
185
|
-
src/superlocalmemory/retrieval/semantic_channel.py
|
|
186
|
-
src/superlocalmemory/retrieval/spreading_activation.py
|
|
187
|
-
src/superlocalmemory/retrieval/strategy.py
|
|
188
|
-
src/superlocalmemory/retrieval/temporal_channel.py
|
|
189
|
-
src/superlocalmemory/retrieval/vector_store.py
|
|
190
|
-
src/superlocalmemory/server/__init__.py
|
|
191
|
-
src/superlocalmemory/server/api.py
|
|
192
|
-
src/superlocalmemory/server/security_middleware.py
|
|
193
|
-
src/superlocalmemory/server/ui.py
|
|
194
|
-
src/superlocalmemory/server/routes/__init__.py
|
|
195
|
-
src/superlocalmemory/server/routes/agents.py
|
|
196
|
-
src/superlocalmemory/server/routes/backup.py
|
|
197
|
-
src/superlocalmemory/server/routes/behavioral.py
|
|
198
|
-
src/superlocalmemory/server/routes/chat.py
|
|
199
|
-
src/superlocalmemory/server/routes/compliance.py
|
|
200
|
-
src/superlocalmemory/server/routes/data_io.py
|
|
201
|
-
src/superlocalmemory/server/routes/events.py
|
|
202
|
-
src/superlocalmemory/server/routes/helpers.py
|
|
203
|
-
src/superlocalmemory/server/routes/insights.py
|
|
204
|
-
src/superlocalmemory/server/routes/learning.py
|
|
205
|
-
src/superlocalmemory/server/routes/lifecycle.py
|
|
206
|
-
src/superlocalmemory/server/routes/memories.py
|
|
207
|
-
src/superlocalmemory/server/routes/profiles.py
|
|
208
|
-
src/superlocalmemory/server/routes/stats.py
|
|
209
|
-
src/superlocalmemory/server/routes/timeline.py
|
|
210
|
-
src/superlocalmemory/server/routes/v3_api.py
|
|
211
|
-
src/superlocalmemory/server/routes/ws.py
|
|
212
|
-
src/superlocalmemory/storage/__init__.py
|
|
213
|
-
src/superlocalmemory/storage/access_control.py
|
|
214
|
-
src/superlocalmemory/storage/access_log.py
|
|
215
|
-
src/superlocalmemory/storage/database.py
|
|
216
|
-
src/superlocalmemory/storage/embedding_migrator.py
|
|
217
|
-
src/superlocalmemory/storage/migration_v33.py
|
|
218
|
-
src/superlocalmemory/storage/migrations.py
|
|
219
|
-
src/superlocalmemory/storage/models.py
|
|
220
|
-
src/superlocalmemory/storage/quantized_store.py
|
|
221
|
-
src/superlocalmemory/storage/schema.py
|
|
222
|
-
src/superlocalmemory/storage/schema_code_graph.py
|
|
223
|
-
src/superlocalmemory/storage/schema_v32.py
|
|
224
|
-
src/superlocalmemory/storage/v2_migrator.py
|
|
225
|
-
src/superlocalmemory/trust/__init__.py
|
|
226
|
-
src/superlocalmemory/trust/gate.py
|
|
227
|
-
src/superlocalmemory/trust/provenance.py
|
|
228
|
-
src/superlocalmemory/trust/scorer.py
|
|
229
|
-
src/superlocalmemory/trust/signals.py
|
|
230
|
-
src/superlocalmemory/ui/index.html
|
|
231
|
-
src/superlocalmemory/ui/js/agents.js
|
|
232
|
-
src/superlocalmemory/ui/js/auto-settings.js
|
|
233
|
-
src/superlocalmemory/ui/js/behavioral.js
|
|
234
|
-
src/superlocalmemory/ui/js/clusters.js
|
|
235
|
-
src/superlocalmemory/ui/js/compliance.js
|
|
236
|
-
src/superlocalmemory/ui/js/core.js
|
|
237
|
-
src/superlocalmemory/ui/js/dashboard.js
|
|
238
|
-
src/superlocalmemory/ui/js/events.js
|
|
239
|
-
src/superlocalmemory/ui/js/fact-detail.js
|
|
240
|
-
src/superlocalmemory/ui/js/feedback.js
|
|
241
|
-
src/superlocalmemory/ui/js/graph-core.js
|
|
242
|
-
src/superlocalmemory/ui/js/graph-event-bus.js
|
|
243
|
-
src/superlocalmemory/ui/js/graph-filters.js
|
|
244
|
-
src/superlocalmemory/ui/js/graph-interactions.js
|
|
245
|
-
src/superlocalmemory/ui/js/graph-ui.js
|
|
246
|
-
src/superlocalmemory/ui/js/ide-status.js
|
|
247
|
-
src/superlocalmemory/ui/js/init.js
|
|
248
|
-
src/superlocalmemory/ui/js/knowledge-graph.js
|
|
249
|
-
src/superlocalmemory/ui/js/learning.js
|
|
250
|
-
src/superlocalmemory/ui/js/lifecycle.js
|
|
251
|
-
src/superlocalmemory/ui/js/math-health.js
|
|
252
|
-
src/superlocalmemory/ui/js/memories.js
|
|
253
|
-
src/superlocalmemory/ui/js/memory-chat.js
|
|
254
|
-
src/superlocalmemory/ui/js/memory-timeline.js
|
|
255
|
-
src/superlocalmemory/ui/js/modal.js
|
|
256
|
-
src/superlocalmemory/ui/js/patterns.js
|
|
257
|
-
src/superlocalmemory/ui/js/profiles.js
|
|
258
|
-
src/superlocalmemory/ui/js/quick-actions.js
|
|
259
|
-
src/superlocalmemory/ui/js/recall-lab.js
|
|
260
|
-
src/superlocalmemory/ui/js/search.js
|
|
261
|
-
src/superlocalmemory/ui/js/settings.js
|
|
262
|
-
src/superlocalmemory/ui/js/timeline.js
|
|
263
|
-
src/superlocalmemory/ui/js/trust-dashboard.js
|
|
264
|
-
tests/test_auto_hooks.py
|
|
265
|
-
tests/test_behavioral_full.py
|
|
266
|
-
tests/test_claude_hooks.py
|
|
267
|
-
tests/test_cli.py
|
|
268
|
-
tests/test_cli_json.py
|
|
269
|
-
tests/test_cli_v33.py
|
|
270
|
-
tests/test_compliance_full.py
|
|
271
|
-
tests/test_config_system.py
|
|
272
|
-
tests/test_engine_hooks.py
|
|
273
|
-
tests/test_event_bus.py
|
|
274
|
-
tests/test_features.py
|
|
275
|
-
tests/test_final_locomo_mini.py
|
|
276
|
-
tests/test_hook_handlers.py
|
|
277
|
-
tests/test_ide_connector.py
|
|
278
|
-
tests/test_infra.py
|
|
279
|
-
tests/test_learning_advanced.py
|
|
280
|
-
tests/test_learning_collectors.py
|
|
281
|
-
tests/test_llm_provider.py
|
|
282
|
-
tests/test_mcp_server.py
|
|
283
|
-
tests/test_migration.py
|
|
284
|
-
tests/test_post_install.py
|
|
285
|
-
tests/test_ranker.py
|
|
286
|
-
tests/test_trust_full.py
|
|
287
|
-
tests/test_v3_api.py
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
httpx>=0.24.0
|
|
2
|
-
numpy<3.0.0,>=1.26.0
|
|
3
|
-
scipy<2.0.0,>=1.12.0
|
|
4
|
-
networkx>=3.0
|
|
5
|
-
mcp>=1.0.0
|
|
6
|
-
python-dateutil>=2.9.0.post0
|
|
7
|
-
rank-bm25>=0.2.2
|
|
8
|
-
vadersentiment>=3.3.2
|
|
9
|
-
einops>=0.8.2
|
|
10
|
-
fastapi[all]>=0.135.1
|
|
11
|
-
uvicorn>=0.42.0
|
|
12
|
-
websockets>=16.0
|
|
13
|
-
lightgbm>=4.0.0
|
|
14
|
-
diskcache>=5.6.0
|
|
15
|
-
orjson>=3.9.0
|
|
16
|
-
tree-sitter<1,>=0.23.0
|
|
17
|
-
tree-sitter-language-pack<2,>=0.3
|
|
18
|
-
rustworkx<1,>=0.15
|
|
19
|
-
watchdog<6,>=4.0
|
|
20
|
-
|
|
21
|
-
[dev]
|
|
22
|
-
pytest>=8.0
|
|
23
|
-
pytest-cov>=4.1
|
|
24
|
-
sqlite-vec>=0.1.6
|
|
25
|
-
|
|
26
|
-
[full]
|
|
27
|
-
superlocalmemory[learning,performance,search,ui]
|
|
28
|
-
|
|
29
|
-
[learning]
|
|
30
|
-
lightgbm>=4.0.0
|
|
31
|
-
|
|
32
|
-
[performance]
|
|
33
|
-
diskcache>=5.6.0
|
|
34
|
-
orjson>=3.9.0
|
|
35
|
-
|
|
36
|
-
[search]
|
|
37
|
-
sentence-transformers[onnx]>=5.0.0
|
|
38
|
-
einops>=0.8.2
|
|
39
|
-
torch>=2.2.0
|
|
40
|
-
scikit-learn<2.0.0,>=1.3.0
|
|
41
|
-
geoopt>=0.5.0
|
|
42
|
-
onnxruntime>=1.17.0
|
|
43
|
-
|
|
44
|
-
[ui]
|
|
45
|
-
fastapi[all]>=0.135.1
|
|
46
|
-
uvicorn>=0.42.0
|
|
47
|
-
python-multipart<1.0.0,>=0.0.6
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
superlocalmemory
|