Skip to content

Commit

Permalink
Update chatbot url
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway authored Apr 3, 2024
1 parent e8823b4 commit 9faf7ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/chatbot-extension-imagej-macro.imjoy.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
let chatbot = await api.getWindow("BioImage.IO Chatbot");
if (!chatbot) {
chatbot = await api.createWindow({
src: "https://staging.chat.bioimage.io/public/apps/bioimageio-chatbot-client/index",
src: "https://bioimage.io/chat",
name: "BioImage.IO Chatbot",
});
}
Expand Down
2 changes: 1 addition & 1 deletion public/chatbot-extension.imjoy.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
if (chatbot) {
await this.registerExtensions(chatbot.registerExtension)
} else {
chatbot = await api.createWindow({src: "https://chat.bioimage.io/public/apps/bioimageio-chatbot-client/chat", name: "BioImage.IO Chatbot"})
chatbot = await api.createWindow({src: "https://bioimage.io/chat", name: "BioImage.IO Chatbot"})
await this.registerExtensions(chatbot.registerExtension)
}
let ij = await api.getWindow("ImageJ.JS")
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function setupImJoyApp() {
label: "➕ Chatbot",
async callback() {
const chatbot = await api.createWindow({
src: "https://staging.chat.bioimage.io/public/apps/bioimageio-chatbot-client/index",
src: "https://bioimage.io/chat",
name: "BioImage.IO Chatbot",
});
await chatbot.registerExtension({
Expand Down

0 comments on commit 9faf7ee

Please sign in to comment.