(
shell: InteractiveShell | None = None,
runtime_config: RuntimeConfig | None = None,
tools_config: ToolsConfig | None = None,
)
| 55 | |
| 56 | |
| 57 | def build_default_tool_specs( |
| 58 | shell: InteractiveShell | None = None, |
| 59 | runtime_config: RuntimeConfig | None = None, |
| 60 | tools_config: ToolsConfig | None = None, |
| 61 | ) -> list[ToolSpec]: |
| 62 | return [ |
| 63 | build_terminal_tool(shell=shell, runtime_config=runtime_config, tools_config=tools_config), |
| 64 | build_html_tool(), |
| 65 | ] |
no test coverage detected