Skip to content

Commit

Permalink
Switch default engine
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed May 16, 2024
1 parent 8c412f2 commit 1174ac1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ await client.runModel();
- `server_url`: the bioengine server url
- `triton_service_id`: the triton service id

Example: [Click here](https://bioimage-io.github.io/bioengine-web-client/?model=discreet-rooster&server_url=https://ai.imjoy.io&triton_service_id=triton-client)
Example: [Click here](https://bioimage-io.github.io/bioengine-web-client/?model=discreet-rooster&server_url=https://hypha.bioimage.io&triton_service_id=triton-client)


## As an Bioimage.IO chatbot extension
Expand Down
2 changes: 1 addition & 1 deletion src/modelRun.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class TritonExecutor {
}

export class ModelRunner {
constructor(serverUrl = "https://ai.imjoy.io", serviceId = "triton-client") {
constructor(serverUrl = "https://hypha.bioimage.io", serviceId = "triton-client") {
this.tritonExecutor = new TritonExecutor(serverUrl, serviceId);
this.rdf = null;
this.modelTritonConfig = null;
Expand Down
2 changes: 1 addition & 1 deletion src/stores/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineStore } from "pinia";

export const useServerStore = defineStore("server", {
state: () => ({
serverUrl: "https://ai.imjoy.io",
serverUrl: "https://hypha.bioimage.io",
serviceId: "triton-client",
updateCount: 0,
}),
Expand Down

0 comments on commit 1174ac1

Please sign in to comment.