const max = Agent.fromConfigFile("reporter.json", { ... });
graph.addAgentNode({ agent: max, nodeId: "max-1" });
graph.addAgentNode({ agent: max, nodeId: "max-2" });
const victoria = Agent.fromConfigFile("reviewer.json", { ... });
graph.addAgentNode({ agent: victoria, nodeId: "victoria" });
const demian = Agent.fromConfigFile("director.json", { ... });
graph.addAgentNode({ agent: demian, nodeId: "demian" });
graph.setEntryPoint({
nodeId: "max-1",
prompt: "Write an article...",
memoryId: "ARTICLE_DRAFT"
});
graph.addEdge({
from: "max-1",
to: "victoria",
prompt: "Provide feedback...",
memoryId: "REVIEWER_FEEDBACK",
});
graph.addEdge({
from: "victoria",
to: "max-2",
prompt: "Apply the feedback...",
memoryId: "FINAL_ARTICLE"
});
graph.addEdge({
from: "max-2",
to: "demian",
prompt: "Approve the article...",
});
const task = new GraphTask(graph, memory);
task.runTask("Write a news article praising...").then((result) => {
...
});