Record Class AgentInvocationError
java.lang.Object
java.lang.Record
dev.langchain4j.agentic.observability.AgentInvocationError
public record AgentInvocationError(AgenticScope agenticScope, AgentInstance agent, Map<String,Object> inputs, Throwable error)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionAgentInvocationError(AgenticScope agenticScope, AgentInstance agent, Map<String, Object> inputs, Throwable error) Creates an instance of aAgentInvocationErrorrecord 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.error()Returns the value of theerrorrecord component.final inthashCode()Returns a hash code value for this object.inputs()Returns the value of theinputsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AgentInvocationError
public AgentInvocationError(AgenticScope agenticScope, AgentInstance agent, Map<String, Object> inputs, Throwable error) Creates an instance of aAgentInvocationErrorrecord class.- Parameters:
agenticScope- the value for theagenticScoperecord componentagent- the value for theagentrecord componentinputs- the value for theinputsrecord componenterror- the value for theerrorrecord 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
-
error
Returns the value of theerrorrecord component.- Returns:
- the value of the
errorrecord component
-