2.0.3 • Published 8 months ago
@graphai/step_runner_agent_filter v2.0.3
@graphai/step_runner_agent_filter for GraphAI
Agent filter collections for GraphAI.
Install
yarn add @graphai/step_runner_agent_filterUSAGE
To debug graph data in the console, you can execute each agent step by step.
It can be used via:
import { consoleStepRunner } from "@graphai/step_runner_agent_filter";
const agentFilters = [
{
name: "consoleStepRunner",
agent: consoleStepRunner,
},
];
const graph = new GraphAI(
graph_data,
{
...agents,
},
{ agentFilters },
);
await graph.run();