fix(ci): drop unused google prompt cache type

This commit is contained in:
Vincent Koc
2026-04-05 10:49:51 +01:00
parent e3eb615da8
commit 1d736dcbbc

View File

@@ -68,10 +68,6 @@ type GooglePromptCacheDeps = {
now?: () => number;
};
type GooglePromptCacheStreamOptions = {
cachedContent?: string;
};
function resolveGooglePromptCacheTtl(cacheRetention: CacheRetention): string {
return cacheRetention === "long" ? "3600s" : "300s";
}