install
fun <TConfig : FeatureConfig> install(feature: AIAgentPlannerFeature<TConfig, *>, configure: ConfigureAction<TConfig>): PlannerAIAgentBuilder<Input, Output>(source)
Installs a planner-specific AI agent feature into the builder with its provided configuration.
This method allows the integration of an AIAgentPlannerFeature into the builder and its configuration using a lambda function. The feature is then added to the list of feature installers, enabling its functionality within the AI agent being constructed.
Return
The current instance of the PlannerAIAgentBuilder for chaining additional configurations.
Parameters
TConfig
The type of the configuration for the feature, extending FeatureConfig.
feature
The AIAgentPlannerFeature to be installed into the builder.
configure
A lambda function to configure the feature's properties and behavior.