Files
ra-h-os/instrumentation.ts
“BeeRad” 97eeb0789f 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
2026-04-16 14:08:37 +10:00

7 lines
210 B
TypeScript

export async function register() {
if (process.env.NEXT_RUNTIME === 'nodejs') {
const { startAutoEmbedRecovery } = await import('@/services/embedding/autoEmbedQueue');
startAutoEmbedRecovery();
}
}