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/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/agent/contextMap.ts#L76