Remove the Open-WebUI retrieval bridge — Varaverk is the only Ollama client now

This commit is contained in:
Gmer4Lfe
2026-08-04 17:11:46 -04:00
parent 9c8eb8a2bc
commit 0cf208b80a
6 changed files with 5 additions and 498 deletions
+5 -10
View File
@@ -216,17 +216,12 @@ built before any of that is enabled.
## ━━━ SCHEDULING ━━━
Not scheduled by default. When you want the index to track the repo automatically, the natural
home is after a successful pull — the only moment the corpus actually changes:
The index tracks the repo automatically, from the only moment the corpus actually changes — a
successful pull. `git_pull_execute.sh` re-indexes behind three gates: the pull succeeded and
changed tracked files, `AI_INDEX_ON_PULL=true`, and `AI_ENABLED=true`. It is never fatal — a
failed index leaves the previous one in place and the pull still reports success.
```bash
# master.conf → DAILY_MAINTENANCE_SCRIPTS, after git_pull_execute.sh
"AI/ai_index.sh"
```
`AI_INDEX_ON_PULL` exists in `master.conf` as the intended gate for wiring this into
`git_pull_execute.sh` directly. It is not yet consumed by anything — the variable is reserved,
not live.
No cron entry and no `DAILY_MAINTENANCE_SCRIPTS` line are needed; the daily pull carries it.
An incremental run on an unchanged repo is ~70 ms, so a daily entry costs effectively nothing
and a pull that changed twelve files costs a few seconds.