()
| 217 | } |
| 218 | |
| 219 | export async function collectModelToolSurfaceInventory(): Promise< |
| 220 | ModelToolSurfaceEntry[] |
| 221 | > { |
| 222 | const [{ getAllBaseTools }, { SYNTHETIC_OUTPUT_TOOL_NAME }] = await Promise.all([ |
| 223 | import('./tools.js'), |
| 224 | import('./tools/SyntheticOutputTool/SyntheticOutputTool.js'), |
| 225 | ]) |
| 226 | return buildModelToolSurfaceInventory(getAllBaseTools(), SYNTHETIC_OUTPUT_TOOL_NAME) |
| 227 | } |
| 228 | |
| 229 | export async function collectCommandSurfaceInventory(): Promise< |
| 230 | CommandSurfaceEntry[] |
nothing calls this directly
no test coverage detected