(toolIDs: string[])
| 398 | } |
| 399 | |
| 400 | export function summarizeTools(toolIDs: string[]) { |
| 401 | const toolStr = toolIDs |
| 402 | .map((t) => { |
| 403 | const tool = tools[t]; |
| 404 | const toolStr = convertToToolCommandString(tool); |
| 405 | return toolStr; |
| 406 | }) |
| 407 | .join('\n---\n'); |
| 408 | |
| 409 | return toolStr; |
| 410 | } |
no test coverage detected