(rows: readonly ToolInvocationRow[])
| 4140 | const TOOL_SUGGESTION_LIMIT = 5; |
| 4141 | |
| 4142 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 4143 | rows.map((row) => rowToTool(row).address); |
| 4144 | |
| 4145 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4146 | b.and( |