From 9e82f49d5f1a21c66f00155674bb6c61f5b4512d Mon Sep 17 00:00:00 2001 From: Leo Romanovsky Date: Thu, 16 Jan 2025 14:05:52 -0800 Subject: [PATCH] dont decode the banditKey --- src/decoding.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/decoding.ts b/src/decoding.ts index b2935cd..83b6f42 100644 --- a/src/decoding.ts +++ b/src/decoding.ts @@ -96,7 +96,6 @@ export function decodePrecomputedBandit( ): IPrecomputedBandit { return { ...precomputedBandit, - banditKey: decodeBase64(precomputedBandit.banditKey), action: decodeBase64(precomputedBandit.action), modelVersion: decodeBase64(precomputedBandit.modelVersion), actionNumericAttributes: decodeObject(precomputedBandit.actionNumericAttributes ?? {}),