fix: promptCacheKey set unnecessarily

This commit is contained in:
Aiden Cline
2025-11-16 14:32:57 -06:00
parent 1e6589526d
commit cf266f6162

View File

@@ -136,7 +136,7 @@ export namespace ProviderTransform {
): Record<string, any> | undefined { ): Record<string, any> | undefined {
const result: Record<string, any> = {} const result: Record<string, any> = {}
if (providerID === "openai" || npm.includes("openai")) { if (providerID === "openai") {
result["promptCacheKey"] = sessionID result["promptCacheKey"] = sessionID
} }