AxContextCacheOperation
type AxContextCacheOperation = object;Defined in: https://github.com/ax-llm/ax/blob/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/types.ts#L1264
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/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/types.ts#L1268
API endpoint configuration
parseResponse()
parseResponse: (response: unknown) => AxContextCacheInfo | undefined;Defined in: https://github.com/ax-llm/ax/blob/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/types.ts#L1272
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/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/types.ts#L1270
Request payload
type
type: "create" | "update" | "delete" | "get";Defined in: https://github.com/ax-llm/ax/blob/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/types.ts#L1266
Type of cache operation