()
| 15 | * Set as a build-time define in scripts/build-with-plugins.ts for ant-native builds. |
| 16 | */ |
| 17 | export function hasEmbeddedSearchTools(): boolean { |
| 18 | if (!isEnvTruthy(process.env.EMBEDDED_SEARCH_TOOLS)) return false |
| 19 | const e = process.env.CLAUDE_CODE_ENTRYPOINT |
| 20 | return ( |
| 21 | e !== 'sdk-ts' && e !== 'sdk-py' && e !== 'sdk-cli' && e !== 'local-agent' |
| 22 | ) |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Path to the bun binary that contains the embedded search tools. |
no test coverage detected