Skip to content

Commit

Permalink
Use dispatch() for SD 1.5, SD Turbo and Whisper Base
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelem committed Nov 12, 2024
1 parent fb30528 commit 4f5eaf0
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions assets/js/common_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const KNOWN_COMPATIBLE_CHROMIUM_VERSION = {
"segment-anything": "129.0.6617.0",
"whisper-base": "129.0.6617.0",
"image-classification": "129.0.6617.0",
"phi-3-mini": "132.0.6823.0",
"phi-3-mini": "132.0.6831.0",
};

export const showCompatibleChromiumVersion = key => {
Expand Down Expand Up @@ -119,33 +119,28 @@ export const getTime = () => {

const KNOWN_COMPATIBLE_ORT_VERSION = {
"stable-diffusion-1.5": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
test: "test",
dev: "1.21.0-dev.20241109-d3ad76b2cf",
stable: "",
test: "",
},
"sd-turbo": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
test: "test",
dev: "1.21.0-dev.20241109-d3ad76b2cf",
stable: "",
test: "",
},
"segment-anything": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
dev: "",
stable: "",
test: "test",
},
"whisper-base": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
test: "test",
},
"image-classification": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
test: "test",
dev: "1.21.0-dev.20241109-d3ad76b2cf",
stable: "",
test: "",
},
"phi-3-mini": {
dev: "1.20.0-dev.20240919-bd60add8ce",
stable: "1.20.0",
dev: "",
stable: "",
test: "test",
},
};
Expand Down

0 comments on commit 4f5eaf0

Please sign in to comment.