mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-14 17:08:31 +08:00
12 lines
211 B
TypeScript
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;
|
||
|
|
}
|