diff --git a/apps/rowboat/app/lib/feature_flags.ts b/apps/rowboat/app/lib/feature_flags.ts index bd3fa6a0..39645fd2 100644 --- a/apps/rowboat/app/lib/feature_flags.ts +++ b/apps/rowboat/app/lib/feature_flags.ts @@ -7,7 +7,7 @@ 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'; export const USE_BILLING = process.env.NEXT_PUBLIC_USE_BILLING === 'true' || process.env.USE_BILLING === 'true'; export const USE_COMPOSIO_TOOLS = process.env.USE_COMPOSIO_TOOLS === 'true'; -export const USE_KLAVIS_TOOLS = process.env.USE_KLAVIS_TOOLS === 'true'; +export const USE_KLAVIS_TOOLS = process.env.USE_KLAVIS_TOOLS === 'false'; // Hardcoded flags export const USE_MULTIPLE_PROJECTS = true;