Incognito Mode Enhancements & Compatibility Fixes
New Features
- Incognito Mode for In-App Recordings - The incognito toggle now works for microphone recordings, not just file uploads
- Default Incognito Mode - New
INCOGNITO_MODE_DEFAULT=trueenv var to have incognito enabled by default for in-app recordings (useful for HIPAA-sensitive workflows) - LLM Streaming Compatibility - New
ENABLE_STREAM_OPTIONS=falseenv var for LLM servers that don't support OpenAI'sstream_optionsparameter
Configuration
# Enable incognito mode feature
ENABLE_INCOGNITO_MODE=true
# Start with incognito toggle ON by default (optional)
INCOGNITO_MODE_DEFAULT=true
# Disable stream_options for incompatible LLM servers (optional)
ENABLE_STREAM_OPTIONS=falseNotes
INCOGNITO_MODE_DEFAULTonly affects in-app recordings, not file uploads- When
ENABLE_STREAM_OPTIONS=false, token usage tracking for chat won't be available (other operations still track normally)