(rows: readonly ToolInvocationRow[])
| 3582 | const TOOL_SUGGESTION_LIMIT = 5; |
| 3583 | |
| 3584 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 3585 | rows.map((row) => rowToTool(row).address); |
| 3586 | |
| 3587 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3588 | b.and( |