AxContextCacheOperation
type AxContextCacheOperation = object;
Defined in: https://github.com/ax-llm/ax/blob/242cf18d21de9f9d58c7c82f53305f0605497473/src/ax/ai/types.ts#L654
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/242cf18d21de9f9d58c7c82f53305f0605497473/src/ax/ai/types.ts#L658
API endpoint configuration
parseResponse()
parseResponse: (response: unknown) => AxContextCacheInfo | undefined;
Defined in: https://github.com/ax-llm/ax/blob/242cf18d21de9f9d58c7c82f53305f0605497473/src/ax/ai/types.ts#L662
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/242cf18d21de9f9d58c7c82f53305f0605497473/src/ax/ai/types.ts#L660
Request payload
type
type: "create" | "update" | "delete" | "get";
Defined in: https://github.com/ax-llm/ax/blob/242cf18d21de9f9d58c7c82f53305f0605497473/src/ax/ai/types.ts#L656
Type of cache operation