(agentId: string)
| 522 | } |
| 523 | |
| 524 | getSuggestions(agentId: string): CopilotKitCoreGetSuggestionsResult { |
| 525 | return ( |
| 526 | this.#suggestionsByAgent()[agentId] ?? this.core.getSuggestions(agentId) |
| 527 | ); |
| 528 | } |
| 529 | |
| 530 | #isSameAgentId<T extends { agentId?: string }>( |
| 531 | target: T, |
no outgoing calls
no test coverage detected