(rows: readonly ToolInvocationRow[])
| 4227 | const TOOL_SUGGESTION_LIMIT = 5; |
| 4228 | |
| 4229 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 4230 | rows.map((row) => rowToTool(row).address); |
| 4231 | |
| 4232 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4233 | b.and( |