feat: update createSequentialChainEdges call to only provide conversation context between agents

This commit is contained in:
Danny Avila 2025-09-04 21:29:52 -04:00
parent 6235ad21fe
commit 611411e712
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -200,7 +200,7 @@ const initializeClient = async ({ req, res, signal, endpointOption }) => {
await processAgent(agentId);
}
const chain = await createSequentialChainEdges([primaryConfig.id].concat(agent_ids));
const chain = await createSequentialChainEdges([primaryConfig.id].concat(agent_ids), '{convo}');
edges = edges ? edges.concat(chain) : chain;
}