Open source vector database with HNSW indexing, graph relationships, and metadata facets. Features CLI with professional augmentation registry integration for discovering extensions and capabilities.
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
/**
|
|
* Universal UUID implementation
|
|
* Works in all environments: Browser, Node.js, Serverless
|
|
*/
|
|
export declare function v4(): string;
|
|
export { v4 as uuidv4 };
|
|
declare const _default: {
|
|
v4: typeof v4;
|
|
};
|
|
export default _default;
|