Source code
Revision control
Copy as Markdown
Other Tools
/*
This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* The current SQLite database schema version
*/
export const CURRENT_SCHEMA_VERSION = 2;
/**
* The directory that the SQLite database lives in
*/
export const DB_FOLDER_PATH = PathUtils?.profileDir ?? "./";
/**
* The name of the SQLite database file
*/
export const DB_FILE_NAME = "chat-store.sqlite";
/**
* Preference branch for the Chat storage location
*/
export const PREF_BRANCH = "browser.aiWindow.chatHistory";
export {
CONVERSATION_STATUS,
MESSAGE_ROLE,
INSIGHTS_FLAG_SOURCE,
SYSTEM_PROMPT_TYPE,
} from "./ChatEnums.sys.mjs";