UNPKG

@hpbyte/h-codex-core

Version:

Core indexing and search functionality for h-codex

11 lines (10 loc) 247 B
interface EmbeddingsConfig { apiKey: string; baseURL: string; model: string; chunkSize: number; searchResultsLimit: number; similarityThreshold: number; } export declare const embeddingsConfig: EmbeddingsConfig; export {};