mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
15 lines
No EOL
767 B
TypeScript
15 lines
No EOL
767 B
TypeScript
export const USE_RAG = process.env.USE_RAG === 'true';
|
|
export const USE_RAG_UPLOADS = process.env.USE_RAG_UPLOADS === 'true';
|
|
export const USE_RAG_SCRAPING = process.env.USE_RAG_SCRAPING === 'true';
|
|
export const USE_CHAT_WIDGET = process.env.USE_CHAT_WIDGET === 'true';
|
|
export const USE_AUTH = process.env.USE_AUTH === 'true';
|
|
export const USE_RAG_S3_UPLOADS = process.env.USE_RAG_S3_UPLOADS === 'true';
|
|
export const USE_GEMINI_FILE_PARSING = process.env.USE_GEMINI_FILE_PARSING === 'true';
|
|
|
|
// Hardcoded flags
|
|
export const USE_MULTIPLE_PROJECTS = true;
|
|
export const USE_TESTING_FEATURE = false;
|
|
export const USE_VOICE_FEATURE = false;
|
|
export const USE_TRANSFER_CONTROL_OPTIONS = false;
|
|
export const USE_PRODUCT_TOUR = true;
|
|
export const SHOW_COPILOT_MARQUEE = false; |