AIAgentPlannerStrategy
class AIAgentPlannerStrategy<Input, Output>(val name: String, val planner: AIAgentPlanner<Input, Output, *, *>) : AIAgentStrategy<Input, Output, AIAgentPlannerContext> (source)
A strategy implementation that utilizes a planner to manage and execute AI agent workflows.
This class integrates an AI planning component (AIAgentPlanner) with a defined execution mechanism, creating a customizable strategy for AI agents.
Type Parameters
Input
The type of input data required as the starting point for the strategy execution.
Output
The type of output data produced as the result of the strategy execution.
Types
Link copied to clipboard
object Companion
Companion object for AIAgentPlannerStrategy with factory method create.