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