AxAgentContextMapOperation
type AxAgentContextMapOperation =
| {
content: string;
section: string;
type: "ADD";
}
| {
itemId: string;
type: "DELETE";
}
| {
content: string;
itemId: string;
type: "REPLACE";
};Defined in: https://github.com/ax-llm/ax/blob/5b28f9093bb70863b59459bb6df5062d005bce41/src/ax/agent/contextMap.ts#L76