Interface AgencyMemoryScopingConfig

Controls how GMIs scope their RAG queries within an agency.

interface AgencyMemoryScopingConfig {
    includeSharedInQueries?: boolean;
    allowCrossGMIQueries?: boolean;
    sharedMemoryWeight?: number;
}

Properties

includeSharedInQueries?: boolean

Include agency shared memory in GMI RAG queries.

Default

true when agency memory is enabled
allowCrossGMIQueries?: boolean

Include other GMIs' personal memory in queries (with permission).

Default

false
sharedMemoryWeight?: number

Priority weight for shared memory vs personal memory in results. 0 = personal only, 1 = shared only, 0.5 = equal weight.

Default

0.3