feat: finalize local OpenAI key flow and MCP docs

- add server-side .env.local OpenAI key management for the open-source app
- route AI features through the preferred local key path and lazy-load embed recovery
- rewrite README and docs for current MCP setup, schema, and fully-local guidance

Generated with Claude Code
This commit is contained in:
“BeeRad”
2026-04-16 14:08:37 +10:00
parent c2f880d957
commit 97eeb0789f
28 changed files with 891 additions and 215 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
import { startAutoEmbedRecovery } from '@/services/embedding/autoEmbedQueue';
export async function register() {
if (process.env.NEXT_RUNTIME === 'nodejs') {
const { startAutoEmbedRecovery } = await import('@/services/embedding/autoEmbedQueue');
startAutoEmbedRecovery();
}
}