Feature Flags
Xio includes optional features that can be toggled on or off through environment variables. These are helpful when customizing behavior, debugging, or trimming down the interface.
Common feature flags:
envCopyEditENABLE_WHISPER_TRANSCRIPTION=true
ALLOW_URL_SCRAPING=true
ENABLE_ANALYTICS=false
Each flag enables or disables specific functionality. For example:
ENABLE_WHISPER_TRANSCRIPTION
: Automatically transcribe audio files and YouTube linksALLOW_URL_SCRAPING
: Allow adding URLs as sources (with HTML-to-text conversion)ENABLE_ANALYTICS
: Send basic usage analytics (disabled by default)
Adjust these settings to match your privacy, performance, and functionality needs. You can always revisit and update them as your use of Xio evolves.
Last updated