* Check if ENABLE_SEARCH_EXTRA_TOOLS is set to auto mode (auto or auto:N).
(value: string | undefined)
| 69 | * Check if ENABLE_SEARCH_EXTRA_TOOLS is set to auto mode (auto or auto:N). |
| 70 | */ |
| 71 | function isAutoSearchExtraToolsMode(value: string | undefined): boolean { |
| 72 | if (!value) return false |
| 73 | return value === 'auto' || value.startsWith('auto:') |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Get the auto-enable percentage from env var or default. |
no outgoing calls
no test coverage detected