UNPKG

@knath2000/codebase-indexing-mcp

Version:

MCP server for codebase indexing with Voyage AI embeddings and Qdrant vector storage

12 lines 424 B
function envBool(key, def) { const val = process.env[key]; if (val === undefined) return def; return val === 'true' || val === '1'; } export const featureFlags = { ENABLE_LLM_RERANKING: envBool('ENABLE_LLM_RERANKING', true), ENABLE_HYBRID_SPARSE: envBool('ENABLE_HYBRID_SPARSE', true), AUTO_INDEX_ON_CONNECT: envBool('AUTO_INDEX_ON_CONNECT', true) }; //# sourceMappingURL=feature-flags.js.map