| 21 | |
| 22 | // 消息类型定义 |
| 23 | interface Message { |
| 24 | id: string |
| 25 | role: "user" | "assistant" | "system" |
| 26 | content: string |
| 27 | isLoading?: boolean |
| 28 | error?: boolean |
| 29 | } |
| 30 | |
| 31 | interface Location { |
| 32 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected