mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-08 08:28:02 +08:00
20 lines
444 B
TypeScript
20 lines
444 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: number };
|
||
|
|
storage_type: string;
|
||
|
|
}
|