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 a8f7e1a commit ea0a693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interprot/endpoints/sae_inference/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SAE Inference Endpoint on RunPod

https://www.runpod.io/console/serverless/user/endpoint/fad3whi01lfmh2
https://www.runpod.io/console/serverless/user/endpoint/dbltnn5ugr3n3k
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, "fad3whi01lfmh2");
const data = await postRunpod(input, "dbltnn5ugr3n3k");
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, "fad3whi01lfmh2");
const data = await postRunpod(input, "dbltnn5ugr3n3k");
SAEAllDimsActivationsCache[cacheKey] = data.token_acts_list_by_active_dim;
return data.token_acts_list_by_active_dim;
}
Expand Down

0 comments on commit ea0a693

Please sign in to comment.