Record Class PlanningContext
java.lang.Object
java.lang.Record
dev.langchain4j.agentic.planner.PlanningContext
public record PlanningContext(AgenticScope agenticScope, AgentInvocation previousAgentInvocation)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionPlanningContext(AgenticScope agenticScope, AgentInvocation previousAgentInvocation) Creates an instance of aPlanningContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theagenticScoperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thepreviousAgentInvocationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PlanningContext
Creates an instance of aPlanningContextrecord class.- Parameters:
agenticScope- the value for theagenticScoperecord componentpreviousAgentInvocation- the value for thepreviousAgentInvocationrecord component
-
-
Method Details
-
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
-
previousAgentInvocation
Returns the value of thepreviousAgentInvocationrecord component.- Returns:
- the value of the
previousAgentInvocationrecord component
-