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.
This commit is contained in:
commit
f8c45f2d8d
448 changed files with 103294 additions and 0 deletions
14
dist/browserFramework.minimal.d.ts
vendored
Normal file
14
dist/browserFramework.minimal.d.ts
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Minimal Browser Framework Entry Point for Brainy
|
||||
* Core MIT open source functionality only - no enterprise features
|
||||
* Optimized for browser usage with all dependencies bundled
|
||||
*/
|
||||
import { BrainyData } from './brainyData.js';
|
||||
import { VerbType, NounType } from './types/graphTypes.js';
|
||||
/**
|
||||
* Create a BrainyData instance optimized for browser usage
|
||||
* Auto-detects environment and selects optimal storage and settings
|
||||
*/
|
||||
export declare function createBrowserBrainyData(config?: {}): Promise<BrainyData<any>>;
|
||||
export { VerbType, NounType, BrainyData };
|
||||
export default createBrowserBrainyData;
|
||||
Loading…
Add table
Add a link
Reference in a new issue