Record Class AgentResponse
java.lang.Object
java.lang.Record
dev.langchain4j.agentic.agent.AgentResponse
public record AgentResponse(AgenticScope agenticScope, AgentInstance agent, Map<String,Object> inputs, Object output)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionAgentResponse(AgenticScope agenticScope, AgentInstance agent, Map<String, Object> inputs, Object output) Creates an instance of aAgentResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionagent()Returns the value of theagentrecord component.Returns the value of theagenticScoperecord component.agentId()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.inputs()Returns the value of theinputsrecord component.output()Returns the value of theoutputrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AgentResponse
public AgentResponse(AgenticScope agenticScope, AgentInstance agent, Map<String, Object> inputs, Object output) Creates an instance of aAgentResponserecord class.- Parameters:
agenticScope- the value for theagenticScoperecord componentagent- the value for theagentrecord componentinputs- the value for theinputsrecord componentoutput- the value for theoutputrecord component
-
-
Method Details
-
agentName
-
agentId
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
agenticScope
Returns the value of theagenticScoperecord component.- Returns:
- the value of the
agenticScoperecord component
-
agent
Returns the value of theagentrecord component.- Returns:
- the value of the
agentrecord component
-
inputs
-
output
Returns the value of theoutputrecord component.- Returns:
- the value of the
outputrecord component
-