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 884074f commit 4b11604Copy full SHA for 4b11604
src/lib/agent.ts
@@ -493,7 +493,7 @@ Please correct the parameters and try again.`;
493
// Parameters are valid, proceed with execution
494
try {
495
logger.info(`Orchestrator executing capability: ${capabilityName}`, { params: validationResult.data });
496
- // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment
497
const capabilityResult: unknown = await capabilityFunc(capabilityContext, validationResult.data as any);
498
499
agentState.steps.push({
0 commit comments