-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Description
问题描述:
- 代码中使用
agentResult.steps和agentResult.result - 但实际字段名是
actions和message
原因:
-
Stagehand v3 的
AgentResult类型定义:interface AgentResult { success: boolean; message: string; // 不是 result actions: AgentAction[]; // 不是 steps completed: boolean; }
解决方案:
- 更新字段映射:
steps→actions,result→message - 参考:
src/browser.ts第 193-198 行
Metadata
Metadata
Assignees
Labels
No labels