AxContextCacheOperation
type AxContextCacheOperation = object;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/types.ts#L1354
Context cache operation to be executed by the base AI service. Providers define these operations; AxBaseAI executes them via apiCall().
Properties
apiConfig
apiConfig: AxAPI;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/types.ts#L1358
API endpoint configuration
parseResponse()
parseResponse: (response: unknown) => AxContextCacheInfo | undefined;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/types.ts#L1362
Parse the response and return cache info
Parameters
| Parameter | Type |
|---|---|
response | unknown |
Returns
AxContextCacheInfo | undefined
request
request: unknown;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/types.ts#L1360
Request payload
type
type: "create" | "update" | "delete" | "get";Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/types.ts#L1356
Type of cache operation