(rows: readonly ToolInvocationRow[])
| 3598 | const TOOL_SUGGESTION_LIMIT = 5; |
| 3599 | |
| 3600 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 3601 | rows.map((row) => rowToTool(row).address); |
| 3602 | |
| 3603 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3604 | b.and( |