| 22 | * 对话消息记录 |
| 23 | */ |
| 24 | export interface ChatMessageRecord { |
| 25 | id: string |
| 26 | sessionId: string |
| 27 | role: string |
| 28 | content: string |
| 29 | modelName?: string |
| 30 | createTime?: string |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * 分页结果 |
nothing calls this directly
no outgoing calls
no test coverage detected