Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ export const OPENAI_ASSISTANTS_STATE_PATH =
path.join(LAB_ROOT, "openai-assistants-state.json");
export const OUTPUT_DIR =
process.env.TABBIT_OUTPUT_DIR || path.join(LAB_ROOT, "output", "playwright");
export const TABBIT_CHAT_URL = "https://web.tabbitbrowser.com/chat/new";
export const TABBIT_CHAT_URL = "https://web.tabbit.ai/chat/new";
export const TABBIT_MODELS_URL =
"https://web.tabbitbrowser.com/proxy/v1/model_config/models?a=0";
"https://web.tabbit.ai/proxy/v1/model_config/models?a=0";

export const MAXAI_EXTENSION_ID = "mhnlakgilnojmhinhkckjpncpbhabphi";
export const CHATGPTBOX_EXTENSION_ID = "eobbhoofkanlmddnplfhnmkfbnlhpbbo";
Expand Down
4 changes: 2 additions & 2 deletions src/tabbit-web-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,8 @@ async function sendUsingPageModule(
}

const runtime = captureWebpackRequire();
const sendMessage = runtime(51523)._;
const modes = runtime(96164).R7;
const sendMessage = runtime(51523)._z;
const modes = runtime(32386).R7;

const state = {
messages: [],
Expand Down