(rows: readonly ToolInvocationRow[])
| 4253 | const TOOL_SUGGESTION_LIMIT = 5; |
| 4254 | |
| 4255 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 4256 | rows.map((row) => rowToTool(row).address); |
| 4257 | |
| 4258 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4259 | b.and( |