fix the 1 hr ttl

This commit is contained in:
dal 2025-07-24 10:16:19 -06:00
parent ed77fb4409
commit 2c02b9189b
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ const outputSchema = z.object({
}); });
const DEFAULT_CACHE_OPTIONS = { const DEFAULT_CACHE_OPTIONS = {
anthropic: { cacheControl: { type: 'ephemeral', ttl: '1hr' } }, anthropic: { cacheControl: { type: 'ephemeral', ttl: '1h' } },
}; };
/** /**

View File

@ -64,7 +64,7 @@ type BusterChatMessageResponse = z.infer<typeof BusterChatMessageResponseSchema>
const outputSchema = ThinkAndPrepOutputSchema; const outputSchema = ThinkAndPrepOutputSchema;
const DEFAULT_CACHE_OPTIONS = { const DEFAULT_CACHE_OPTIONS = {
anthropic: { cacheControl: { type: 'ephemeral', ttl: '1hr' } }, anthropic: { cacheControl: { type: 'ephemeral', ttl: '1h' } },
}; };
// Helper function to create the result object // Helper function to create the result object