data: 消息的 JSON 结构,消息格式:data:<JSON>\n\ninterface StreamEvent {
type: 'start' | 'log' | 'exit' | 'error' // 事件类型
runId: string // 事件id,仅 `log` 和 `error` 事件存在
stream: 'stdout' | 'stderr' // 输出流类型,仅 `log` 事件存在
log: string // 日志内容,仅 `log` 和 `error` 事件存在
}{
"type": "start",
"runId": "string",
"stream": "stdout",
"log": "string"
}