Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
isamu committed Dec 17, 2024
1 parent 9ab0d09 commit 5b7cbae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/agent_utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const agentRunner = async (agentInfo: AgentFunctionInfo) => {
const { agent, samples, inputs: inputSchema } = agentInfo;
const ret = await Promise.all(
samples.map(async (sample) => {
const { params, inputs, result, graph } = sample;
const { params, inputs /* , result, graph */ } = sample;
const namedInputs = Array.isArray(inputs) ? {} : inputs;

const actual = await agent({
Expand Down

0 comments on commit 5b7cbae

Please sign in to comment.