lorewiki 0.2.3__tar.gz → 0.2.4__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.
- {lorewiki-0.2.3 → lorewiki-0.2.4}/PKG-INFO +4 -16
- {lorewiki-0.2.3 → lorewiki-0.2.4}/README.md +3 -15
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/__init__.py +1 -1
- {lorewiki-0.2.3 → lorewiki-0.2.4}/pyproject.toml +1 -1
- {lorewiki-0.2.3 → lorewiki-0.2.4}/.gitignore +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/LICENSE +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/__main__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/add.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/apps.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/commands.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/config_cmds.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/helpers.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/topic_cmds.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/config.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/connection.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/models.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/schema.sql +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/chunker.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/cleaning.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/indexer.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/parser.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/client.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/generator.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/py.typed +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/base.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/bm25.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/fusion.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/hierarchy.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/search.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/vector.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/topic.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/__init__.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/logger.py +0 -0
- {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/topic_shared.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lorewiki
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Local-first knowledge base for LLM-assisted coding, with hybrid retrieval (BM25 + hierarchy + optional vector) over SQLite FTS5.
|
|
5
5
|
Project-URL: Documentation, https://github.com/JochenYang/Lore-wiki
|
|
6
6
|
Project-URL: Source, https://github.com/JochenYang/Lore-wiki
|
|
@@ -105,10 +105,10 @@ it directly.
|
|
|
105
105
|
|
|
106
106
|
## Installation
|
|
107
107
|
|
|
108
|
-
LoreWiki ships as a Python wheel on **PyPI** (
|
|
109
|
-
|
|
108
|
+
LoreWiki ships as a single Python wheel on **PyPI** (the only
|
|
109
|
+
distribution channel). Pick your preferred installer:
|
|
110
110
|
|
|
111
|
-
###
|
|
111
|
+
### uv (recommended, full feature set)
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
114
|
# Install — isolated per-tool venv, the lorewiki.exe (Windows)
|
|
@@ -145,18 +145,6 @@ pip install 'lorewiki[vector]' # opt-in: vector retrieval
|
|
|
145
145
|
> The CLI + opencode skill replaced the FastAPI / MCP server surface.
|
|
146
146
|
> The `[all]` extra is now an alias for `[vector]`.
|
|
147
147
|
|
|
148
|
-
### Node (npm shim, identical CLI)
|
|
149
|
-
|
|
150
|
-
```bash
|
|
151
|
-
npm install -g lorewiki # postinstall calls `uv tool install lorewiki`
|
|
152
|
-
npm install -g lorewiki@latest # upgrade
|
|
153
|
-
npm uninstall -g lorewiki # also runs `uv tool uninstall lorewiki`
|
|
154
|
-
```
|
|
155
|
-
|
|
156
|
-
The npm package is a thin shim — it spawns the Python `lorewiki` that
|
|
157
|
-
the postinstall hook installed. See [`README.npm.md`](README.npm.md)
|
|
158
|
-
for the full story.
|
|
159
|
-
|
|
160
148
|
### From source (for contributors)
|
|
161
149
|
|
|
162
150
|
```bash
|
|
@@ -61,10 +61,10 @@ it directly.
|
|
|
61
61
|
|
|
62
62
|
## Installation
|
|
63
63
|
|
|
64
|
-
LoreWiki ships as a Python wheel on **PyPI** (
|
|
65
|
-
|
|
64
|
+
LoreWiki ships as a single Python wheel on **PyPI** (the only
|
|
65
|
+
distribution channel). Pick your preferred installer:
|
|
66
66
|
|
|
67
|
-
###
|
|
67
|
+
### uv (recommended, full feature set)
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
70
|
# Install — isolated per-tool venv, the lorewiki.exe (Windows)
|
|
@@ -101,18 +101,6 @@ pip install 'lorewiki[vector]' # opt-in: vector retrieval
|
|
|
101
101
|
> The CLI + opencode skill replaced the FastAPI / MCP server surface.
|
|
102
102
|
> The `[all]` extra is now an alias for `[vector]`.
|
|
103
103
|
|
|
104
|
-
### Node (npm shim, identical CLI)
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
npm install -g lorewiki # postinstall calls `uv tool install lorewiki`
|
|
108
|
-
npm install -g lorewiki@latest # upgrade
|
|
109
|
-
npm uninstall -g lorewiki # also runs `uv tool uninstall lorewiki`
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
The npm package is a thin shim — it spawns the Python `lorewiki` that
|
|
113
|
-
the postinstall hook installed. See [`README.npm.md`](README.npm.md)
|
|
114
|
-
for the full story.
|
|
115
|
-
|
|
116
104
|
### From source (for contributors)
|
|
117
105
|
|
|
118
106
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lorewiki"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4"
|
|
8
8
|
description = "Local-first knowledge base for LLM-assisted coding, with hybrid retrieval (BM25 + hierarchy + optional vector) over SQLite FTS5."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|