UNPKG

infinite-memory

Version:

Infinite context windows for Claude via OpenMemory semantic retrieval

19 lines 791 B
import type { LanguageModel } from 'ai'; import { ContextManager } from './ContextManager.js'; import type { ModelContext } from './types.js'; export declare class InfiniteMemoryModel { private baseModel; private contextManager; private context; private modelIdString; readonly specificationVersion: "v2"; readonly provider: string; readonly modelId: string; readonly defaultObjectGenerationMode: "tool"; readonly supportsImageUrls?: boolean; readonly supportedUrls: Record<string, RegExp[]>; constructor(baseModel: LanguageModel, contextManager: ContextManager, context: ModelContext, modelIdString: string); doGenerate(options: any): Promise<any>; doStream(options: any): Promise<any>; } //# sourceMappingURL=InfiniteMemoryModel.d.ts.map