ag-ui.d.ts 423 B

1234567891011121314151617
  1. // src/views/dashboard/welcome/index.vue 中使用的 ag-ui 类型定义
  2. declare namespace AgUi {
  3. /**
  4. * ag-ui 规范的流式响应消息体
  5. */
  6. export interface StreamMessage {
  7. /** 消息内容增量 */
  8. delta: string
  9. /** 消息类型 */
  10. type: string
  11. /** 消息唯一标识 */
  12. messageId: string
  13. /** 其他可能存在的字段,根据实际 API 调整 */
  14. [key: string]: any
  15. }
  16. }