mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-04 01:25:07 +08:00
### What problem does this PR solve? Fix: bugs fix - table -> Table - memory delete fail - memory copywriting modified ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
25 lines
537 B
TypeScript
25 lines
537 B
TypeScript
export interface IMessageInfo {
|
|
message_id: number;
|
|
message_type: 'semantic' | 'raw' | 'procedural';
|
|
source_id: string | '-';
|
|
id: string;
|
|
user_id: string;
|
|
agent_id: string;
|
|
agent_name: string;
|
|
session_id: string;
|
|
valid_at: string;
|
|
invalid_at: string;
|
|
forget_at: string;
|
|
status: boolean;
|
|
}
|
|
|
|
export interface IMessageTableProps {
|
|
messages: { message_list: Array<IMessageInfo>; total_count: number };
|
|
storage_type: string;
|
|
}
|
|
|
|
export interface IMessageContentProps {
|
|
content: string;
|
|
content_embed: string;
|
|
}
|