(rows: readonly ToolInvocationRow[])
| 5691 | const TOOL_SUGGESTION_LIMIT = 5; |
| 5692 | |
| 5693 | const toolSuggestions = (rows: readonly ToolInvocationRow[]): readonly ToolAddress[] => |
| 5694 | rows.map((row) => rowToTool(row).address); |
| 5695 | |
| 5696 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 5697 | b.and( |