We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8acf42f commit ef1cb6cCopy full SHA for ef1cb6c
backend/src/run-agent-step.ts
@@ -67,7 +67,6 @@ export interface AgentOptions {
67
params: Record<string, any> | undefined
68
}
69
70
-// Hi!
71
export const runAgentStep = async (
72
ws: WebSocket,
73
options: AgentOptions,
backend/src/run-programmatic-step.ts
@@ -75,6 +75,13 @@ export async function runProgrammaticStep(
75
throw new Error('No step handler found for agent template ' + template.id)
76
77
78
+ logger.info(
79
+ {
80
+ stepsComplete,
81
+ },
82
+ `HIII Running programmatic step: stepsComplete: ${stepsComplete}`,
83
+ )
84
+
85
logger.info(
86
{
87
templateId: template.id,
0 commit comments