Interface GMICognitiveMemoryFactoryInput

interface GMICognitiveMemoryFactoryInput {
    gmiInstanceId: string;
    sessionId: string;
    userId: string;
    persona: IPersonaDefinition;
    workingMemory: InMemoryWorkingMemory;
    llmProviderManager: AIModelProviderManager;
    utilityAI: IUtilityAI;
    toolOrchestrator: IToolOrchestrator;
    retrievalAugmentor?: IRetrievalAugmentor;
}

Properties

gmiInstanceId: string
sessionId: string
userId: string
workingMemory: InMemoryWorkingMemory
llmProviderManager: AIModelProviderManager
utilityAI: IUtilityAI
toolOrchestrator: IToolOrchestrator
retrievalAugmentor?: IRetrievalAugmentor