We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6dcd8 commit a0a4b21Copy full SHA for a0a4b21
apps/sim/executor/handlers/agent/agent-handler.ts
@@ -714,7 +714,9 @@ export class AgentBlockHandler implements BlockHandler {
714
...this.createResponseMetadata(result),
715
}
716
} catch (error) {
717
- logger.info('JSON parsing failed', { error: error instanceof Error ? error.message : 'Unknown error' })
+ logger.info('JSON parsing failed', {
718
+ error: error instanceof Error ? error.message : 'Unknown error',
719
+ })
720
721
// LLM did not adhere to structured response format
722
logger.error('LLM did not adhere to structured response format:', {
0 commit comments