(rows: readonly ToolInvocationRow[])
| 4299 | const TOOL_SUGGESTION_LIMIT = 5; |
| 4300 | |
| 4301 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 4302 | rows.map((row) => rowToTool(row).address); |
| 4303 | |
| 4304 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4305 | b.and( |