Skip to content

Commit

Permalink
Update endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Jan 30, 2025
1 parent 0ac89a0 commit 11c2bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viz/src/runpod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function getSAEDimActivations(input: RunpodSAEDimActivationsInput):
}

// Both caches have missed, call API.
const data = await postRunpod(input, "dbltnn5ugr3n3k");
const data = await postRunpod(input, "mhsktkj2h1uss8");
SAEDimActivationsCache[dimCacheKey] = data.tokens_acts_list;
return data.tokens_acts_list;
}
Expand All @@ -84,7 +84,7 @@ export async function getSAEAllDimsActivations(
if (cacheKey in SAEAllDimsActivationsCache) {
return SAEAllDimsActivationsCache[cacheKey];
}
const data = await postRunpod(input, "dbltnn5ugr3n3k");
const data = await postRunpod(input, "mhsktkj2h1uss8");
SAEAllDimsActivationsCache[cacheKey] = data.token_acts_list_by_active_dim;
return data.token_acts_list_by_active_dim;
}
Expand Down

0 comments on commit 11c2bb3

Please sign in to comment.