Files
ragflow/web/src/interfaces/database/memory.ts
balibabu 9e31631d8f Feat: Add memory multi-select dropdown to recall and message operator forms. #4213 (#12106)
### What problem does this PR solve?

Feat: Add memory multi-select dropdown to recall and message operator
forms. #4213

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-12-23 11:54:32 +08:00

12 lines
211 B
TypeScript

export interface IMemory {
avatar: null;
description: null;
id: string;
memory_type: string[];
name: string;
owner_name: string;
permissions: string;
storage_type: string;
tenant_id: string;
}