mirror of
https://git.zavage.net/Zavage-Software/search-with-chatgpt-powered-by-openai-extension.git
synced 2026-08-10 21:50:29 -06:00
14 lines
435 B
JavaScript
14 lines
435 B
JavaScript
// Single source of truth for the settings shape and their defaults.
|
|
// Defaults reproduce the extension's pre-1.1 behaviour exactly: an empty model
|
|
// and both toggles off mean the only URL parameter sent is `q`.
|
|
|
|
export const OPEN_IN_VALUES = ["new-tab", "background-tab", "new-window"];
|
|
|
|
export const DEFAULT_SETTINGS = {
|
|
model: "",
|
|
temporaryChat: false,
|
|
webSearch: false,
|
|
openIn: "new-tab",
|
|
promptTemplate: "{query}",
|
|
};
|