smart-thinking-mcp
Version:
Un serveur MCP avancé pour le raisonnement multi-dimensionnel, adaptatif et collaboratif
22 lines • 731 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeatureFlags = void 0;
/**
* feature-flags.ts
*
* Centralise the runtime feature toggles for Smart-Thinking.
* Phase 1 explicitly disables any external AI integrations.
*/
exports.FeatureFlags = {
/**
* Controls access to remote embedding providers (e.g. Cohere).
* Phase 1 keeps this disabled while the similarity engine is refactored.
*/
externalEmbeddingEnabled: false,
/**
* Controls access to remote LLM providers (e.g. OpenRouter / OpenAI).
* Phase 1 keeps this disabled so reasoning relies on internal heuristics.
*/
externalLlmEnabled: false,
};
//# sourceMappingURL=feature-flags.js.map