AgentResponse<State>.forTesting constructor

  1. @visibleForTesting
AgentResponse<State>.forTesting(
  1. AgentOutput raw,
  2. List<Message> messages
)

Test-only constructor for building a response directly from a raw AgentOutput and message list, bypassing a transport turn.

Implementation

@visibleForTesting
AgentResponse.forTesting(AgentOutput raw, List<Message> messages)
  : this._(raw, messages);