feature
fun <TFeature : Any> feature(featureClass: KClass<TFeature>, feature: AIAgentFeature<*, TFeature>): TFeature?(source)
Retrieves a feature from the agent's pipeline associated with this agent using the specified key.
Return
The feature associated with the provided key, or null if no matching feature is found.
Parameters
TFeature
A feature implementation type.
feature
A feature to fetch.
featureClass
The KClass of the feature to be retrieved.
Throws
if the specified featureClass does not correspond to a registered feature.