(rows: readonly ToolInvocationRow[])
| 4961 | const TOOL_SUGGESTION_LIMIT = 5; |
| 4962 | |
| 4963 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 4964 | rows.map((row) => rowToTool(row).address); |
| 4965 | |
| 4966 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4967 | b.and( |