(rows: readonly ToolInvocationRow[])
| 6192 | const TOOL_SUGGESTION_LIMIT = 5; |
| 6193 | |
| 6194 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 6195 | rows.map((row) => rowToTool(row).address); |
| 6196 | |
| 6197 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 6198 | b.and( |