(p: ToolPermissionProps<typeof WebSearchTool>)
| 994 | } |
| 995 | |
| 996 | function permWebSearch(p: ToolPermissionProps<typeof WebSearchTool>): ToolPermissionInfo { |
| 997 | const query = p.input.query || "" |
| 998 | const title = webSearchProviderLabel(p.metadata.provider) |
| 999 | return { |
| 1000 | icon: "◈", |
| 1001 | title: query ? `${title} "${query}"` : title, |
| 1002 | lines: query ? [`Query: ${query}`] : [], |
| 1003 | } |
| 1004 | } |
| 1005 | |
| 1006 | function permLsp(p: ToolPermissionProps<typeof LspTool>): ToolPermissionInfo { |
| 1007 | const file = p.input.filePath || "" |
nothing calls this directly
no test coverage detected