Record Class InitPlanningContext
java.lang.Object
java.lang.Record
dev.langchain4j.agentic.planner.InitPlanningContext
public record InitPlanningContext(AgenticScope agenticScope, AgentInstance plannerAgent, List<AgentInstance> subagents)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionInitPlanningContext(AgenticScope agenticScope, AgentInstance plannerAgent, List<AgentInstance> subagents) Creates an instance of aInitPlanningContextrecord 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 theplannerAgentrecord component.Returns the value of thesubagentsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
InitPlanningContext
public InitPlanningContext(AgenticScope agenticScope, AgentInstance plannerAgent, List<AgentInstance> subagents) Creates an instance of aInitPlanningContextrecord class.- Parameters:
agenticScope- the value for theagenticScoperecord componentplannerAgent- the value for theplannerAgentrecord componentsubagents- the value for thesubagentsrecord 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
-
plannerAgent
Returns the value of theplannerAgentrecord component.- Returns:
- the value of the
plannerAgentrecord component
-
subagents
Returns the value of thesubagentsrecord component.- Returns:
- the value of the
subagentsrecord component
-