File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -690,7 +690,11 @@ export const loopAgentSteps = async (
690690 logger . error (
691691 {
692692 error : getErrorObject ( error ) ,
693+ agentType,
693694 agentId : currentAgentState . agentId ,
695+ runId,
696+ totalSteps,
697+ directCreditsUsed : currentAgentState . directCreditsUsed ,
694698 creditsUsed : currentAgentState . creditsUsed ,
695699 } ,
696700 'Agent execution failed' ,
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ export const subgoalSchema = z.object({
2525export type Subgoal = z . infer < typeof subgoalSchema >
2626
2727export const AgentStateSchema : z . ZodType < {
28+ /**
29+ * @deprecated agentId is replaced by runId
30+ */
2831 agentId : string
2932 agentType : AgentTemplateType | null
3033 agentContext : Record < string , Subgoal >
You can’t perform that action at this time.
0 commit comments