| 57 | |
| 58 | // 文件附件类型 |
| 59 | export interface FileAttachment { |
| 60 | id: string |
| 61 | name: string |
| 62 | type: string // MIME type |
| 63 | size: number |
| 64 | localPath: string // 本地文件路径(相对于当前工作区 .pointer/attachments 目录) |
| 65 | createdAt: number |
| 66 | } |
| 67 | |
| 68 | export interface ChatMessage { |
| 69 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected