mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-22 18:45:19 +02:00
10 lines
No EOL
472 B
TypeScript
10 lines
No EOL
472 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';
|
|
|
|
// Hardcoded flags
|
|
export const USE_MULTIPLE_PROJECTS = false;
|
|
export const USE_TESTING_FEATURE = false;
|
|
export const USE_VOICE_FEATURE = false; |