(rows: readonly ToolInvocationRow[])
| 3681 | const TOOL_SUGGESTION_LIMIT = 5; |
| 3682 | |
| 3683 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 3684 | rows.map((row) => rowToTool(row).address); |
| 3685 | |
| 3686 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3687 | b.and( |