pi-vault-mind 0.7.3 → 0.7.4

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/README.md CHANGED
@@ -182,7 +182,15 @@ The Broadcaster agent can generate podcasts, study guides, and slide decks from
182
182
  - **Embedding Provider** — choose one:
183
183
  - `@xenova/transformers` — built-in, no external deps (uses all-MiniLM-L6-v2, offline-capable)
184
184
  - `ollama` — requires Ollama running locally with `embeddinggemma` (higher quality)
185
- - `modal` — optional: offload embedding + bulk re-index to a cloud GPU service and sync vectors down for offline search (see [docs/MODAL_EMBEDDING.md](docs/MODAL_EMBEDDING.md)). Default behavior is unchanged until you opt in.
185
+ - `modal` — optional, **bring-your-own deploy**: offload embedding + bulk re-index to a cloud GPU service and sync vectors down for offline search (see [docs/MODAL_EMBEDDING.md](docs/MODAL_EMBEDDING.md)). Default behavior is unchanged until you opt in.
186
+
187
+ > **On the Modal provider:** the local providers above work for everyone with
188
+ > zero infrastructure — that's the default. `modal` is an **optional, self-hosted
189
+ > tier**: you deploy your own copy of the service (`uvx modal deploy modal/app.py`
190
+ > from a clone of this repo) to your own Modal account and point the extension at
191
+ > *your* URL + token. There is no shared/hosted endpoint — a deployment's URL and
192
+ > bearer token are private to whoever owns it. (A standalone PyPI package for the
193
+ > server may come later.)
186
194
 
187
195
  ### 1. Install with pi
188
196
 
@@ -375,10 +383,8 @@ Edit `pi-vault-mind.config.json` to match your domain:
375
383
  |---|---|
376
384
  | [docs/AGENTS.md](docs/AGENTS.md) | Agent Roster and Multi-Agent Architecture ("Fork & Review" model) |
377
385
  | [docs/EXTENSION_WIRING.md](docs/EXTENSION_WIRING.md) | Extension dependencies, runtime wiring, auto-install patterns |
378
- | [docs/DISPATCHER_SPEC.md](docs/DISPATCHER_SPEC.md) | Technical spec for the passive file-watcher and subagent routing |
379
- | [docs/PASSIVE_INTERACTION_MODEL.md](docs/PASSIVE_INTERACTION_MODEL.md) | "Fork & Dispatch" model — why we don't pollute the main chat session |
380
- | [docs/PASSIVE_INGESTION_WORKFLOW.md](docs/PASSIVE_INGESTION_WORKFLOW.md) | The "Drop & Forget" document ingestion pipeline |
381
- | [docs/NOTEBOOKLM_PIPELINE.md](docs/NOTEBOOKLM_PIPELINE.md) | NotebookLM automated podcast and study guide generation |
386
+ | [docs/DISPATCHER_SPEC.md](docs/DISPATCHER_SPEC.md) | Technical spec for the passive file-watcher and subagent routing — incl. the "Fork & Dispatch" rationale and thread resume |
387
+ | [docs/AGENTS.md](docs/AGENTS.md) | Agent roster + the Miner's "Drop & Forget" ingestion pipeline |
382
388
  | [docs/OBSIDIAN_SETUP.md](docs/OBSIDIAN_SETUP.md) | Recommended Obsidian vault structure, plugins, and CLI |
383
389
 
384
390
  ### Modal embedding service (local integration done)
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-vault-mind",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "Passive Obsidian vault extension for pi. Watches @agent markers, dispatches forked subagents (Miner, Broadcaster, Heavy-Lifter), stores in LanceDB with vector + FTS + graph. Multi-agent 'Drop & Forget' workflow for the pi agent ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",