export declare const cortexNamespace = "cortex"; export declare const databaseName = "cortex"; export declare const databaseFile = "cortex.db"; export declare const defaultCortexJsHost = "127.0.0.1"; export declare const defaultCortexJsPort = 1337; export declare const defaultCortexCppHost = "127.0.0.1"; export declare const defaultCortexCppPort = 3929; export declare const defaultEmbeddingModel = "nomic-embed-text-v1"; export declare const cortexServerAPI: (host: string, port: number) => string; export declare const CORTEX_CPP_EMBEDDINGS_URL: (host?: string, port?: number) => string; export declare const CORTEX_CPP_PROCESS_DESTROY_URL: (host?: string, port?: number) => string; export declare const CORTEX_CPP_UNLOAD_ENGINE_URL: (host?: string, port?: number) => string; export declare const CORTEX_CPP_HEALTH_Z_URL: (host?: string, port?: number) => string; export declare const CORTEX_CPP_MODELS_URL: (host?: string, port?: number) => string; export declare const CORTEX_JS_SYSTEM_URL: (host?: string, port?: number) => string; export declare const CORTEX_JS_HEALTH_URL_WITH_API_PATH: (apiUrl: string) => string; export declare const CORTEX_RELEASES_URL = "https://api.github.com/repos/janhq/cortex/releases"; export declare const CORTEX_ENGINE_RELEASES_URL: (engine: string) => string; export declare const CUDA_DOWNLOAD_URL = "https://catalog.jan.ai/dist/cuda-dependencies///cuda.tar.gz"; export declare const telemetryServerUrl = "https://telemetry.jan.ai"; export declare const MIN_CUDA_VERSION = "12.4";