in packages/core/src/loop/network/index.ts, it takes an agent configuration but only uses some of the inputs:
return new Agent({
id: 'routing-agent',
name: 'Routing Agent',
instructions,
model: model,
memory: memoryToUse,
// @ts-ignore
_agentNetworkAppend: true,
});
In particular, it doesn't pass through the inputProcessors.
This is causing a problem with the amount of context that accumulates in messages through network calls.