platform-codebase/tools/platform-knowledge/shared/index.ts
2026-02-27 17:36:20 -08:00

21 lines
650 B
TypeScript

/**
* Platform Knowledge — shared exports.
*
* Re-exports service configuration and key types from the published
* @lilith/knowledge-verification-client package.
*
* Consumers within the monorepo can import from here for convenience:
* import { KV_API_PORT, kvApiUrl } from '@platform/tools/platform-knowledge/shared';
*
* For the full client API (validation, facts, legal review), import directly:
* import { validateContent, getPlatformFacts } from '@lilith/knowledge-verification-client';
*/
export {
KV_API_PORT,
KV_API_URL,
CRYSTAL_REDIS_PORT,
CRYSTAL_POSTGRES_PORT,
CRYSTAL_REDIS_URL,
kvApiUrl,
} from './config';