trovex 0.11.0__tar.gz
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.
- trovex-0.11.0/.gitignore +40 -0
- trovex-0.11.0/LICENSE +661 -0
- trovex-0.11.0/PKG-INFO +159 -0
- trovex-0.11.0/README.md +113 -0
- trovex-0.11.0/pyproject.toml +84 -0
- trovex-0.11.0/src/trovex/__init__.py +3 -0
- trovex-0.11.0/src/trovex/backup.py +58 -0
- trovex-0.11.0/src/trovex/boot.py +51 -0
- trovex-0.11.0/src/trovex/cache.py +75 -0
- trovex-0.11.0/src/trovex/capture.py +105 -0
- trovex-0.11.0/src/trovex/chunking.py +109 -0
- trovex-0.11.0/src/trovex/cli.py +675 -0
- trovex-0.11.0/src/trovex/config.py +99 -0
- trovex-0.11.0/src/trovex/db.py +270 -0
- trovex-0.11.0/src/trovex/embedder.py +105 -0
- trovex-0.11.0/src/trovex/indexer.py +205 -0
- trovex-0.11.0/src/trovex/insights.py +305 -0
- trovex-0.11.0/src/trovex/markdown.py +85 -0
- trovex-0.11.0/src/trovex/mcp_app.py +318 -0
- trovex-0.11.0/src/trovex/measure.py +121 -0
- trovex-0.11.0/src/trovex/rerank.py +147 -0
- trovex-0.11.0/src/trovex/savings.py +123 -0
- trovex-0.11.0/src/trovex/search.py +173 -0
- trovex-0.11.0/src/trovex/server.py +946 -0
- trovex-0.11.0/src/trovex/state.py +45 -0
- trovex-0.11.0/src/trovex/status.py +221 -0
- trovex-0.11.0/src/trovex/store.py +616 -0
- trovex-0.11.0/src/trovex/templates/_base.html +683 -0
- trovex-0.11.0/src/trovex/templates/_docs_table.html +87 -0
- trovex-0.11.0/src/trovex/templates/_partials.html +43 -0
- trovex-0.11.0/src/trovex/templates/_results.html +113 -0
- trovex-0.11.0/src/trovex/templates/doc.html +470 -0
- trovex-0.11.0/src/trovex/templates/docs.html +203 -0
- trovex-0.11.0/src/trovex/templates/home.html +699 -0
- trovex-0.11.0/src/trovex/templates/insights.html +1066 -0
- trovex-0.11.0/src/trovex/templates/install.html +1015 -0
- trovex-0.11.0/src/trovex/templates/savings.html +591 -0
- trovex-0.11.0/src/trovex/templates/search.html +473 -0
- trovex-0.11.0/src/trovex/templates/settings.html +383 -0
- trovex-0.11.0/src/trovex/templates/store.html +344 -0
- trovex-0.11.0/src/trovex/templates/usage.html +519 -0
- trovex-0.11.0/src/trovex/usage.py +113 -0
trovex-0.11.0/.gitignore
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*$py.class
|
|
4
|
+
*.so
|
|
5
|
+
.Python
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
*.egg-info/
|
|
9
|
+
.venv/
|
|
10
|
+
venv/
|
|
11
|
+
.pytest_cache/
|
|
12
|
+
.ruff_cache/
|
|
13
|
+
|
|
14
|
+
# Project data
|
|
15
|
+
data/
|
|
16
|
+
*.db
|
|
17
|
+
*.db-journal
|
|
18
|
+
*.db-shm
|
|
19
|
+
*.db-wal
|
|
20
|
+
fastembed_cache/
|
|
21
|
+
.trovex-cache/
|
|
22
|
+
|
|
23
|
+
# Local config
|
|
24
|
+
.env
|
|
25
|
+
.env.local
|
|
26
|
+
*.local.yaml
|
|
27
|
+
|
|
28
|
+
.worktrees/
|
|
29
|
+
.env.*
|
|
30
|
+
*.env
|
|
31
|
+
secrets/
|
|
32
|
+
*.key
|
|
33
|
+
|
|
34
|
+
# Vercel CLI local link
|
|
35
|
+
.vercel
|
|
36
|
+
.fastembed_cache/
|
|
37
|
+
|
|
38
|
+
# analytics monitor local state (not for git)
|
|
39
|
+
growth/analytics/reports/.simap-seen.json
|
|
40
|
+
growth/analytics/reports/.simap-cookies.tmp
|