brainy/dist/unified.d.ts
David Snelling f8c45f2d8d Initial commit: Brainy - Multi-Dimensional AI Database
Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
2025-08-18 17:35:06 -07:00

17 lines
603 B
TypeScript

/**
* Unified entry point for Brainy
* This file exports everything from index.ts
* Environment detection is handled here and made available to all components
*/
import './setup.js';
export declare const environment: {
readonly isBrowser: boolean;
readonly isNode: boolean;
readonly isServerless: boolean;
isWebWorker: () => boolean;
readonly isThreadingAvailable: boolean;
isThreadingAvailableAsync: () => Promise<boolean>;
areWorkerThreadsAvailable: () => Promise<boolean>;
};
export * from './index.js';
export { applyTensorFlowPatch } from './utils/textEncoding.js';