()
| 26 | * excludes Glob/Grep when hasEmbeddedSearchTools() is true. |
| 27 | */ |
| 28 | export function getReplPrimitiveTools(): readonly Tool[] { |
| 29 | return (_primitiveTools ??= [ |
| 30 | FileReadTool, |
| 31 | FileWriteTool, |
| 32 | FileEditTool, |
| 33 | GlobTool, |
| 34 | GrepTool, |
| 35 | BashTool, |
| 36 | NotebookEditTool, |
| 37 | AgentTool, |
| 38 | ]) |
| 39 | } |
| 40 |
no outgoing calls
no test coverage detected