Annotation Interface PlannerAgent
Marks a method as a definition of an agent based on a custom planner.
Example:
public interface PlannerBasedStoryCreator {
@PlannerAgent( outputKey = "story",
subAgents = { CreativeWriter.class, AudienceEditor.class, StyleEditor.class})
String write(@V("topic") String topic, @V("style") String style, @V("audience") String audience);
@PlannerSupplier
static Planner planner() {
return new SequentialPlanner();
}
}
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionDescription of the agent.Name of the agent.Key of the output variable that will be used to store the result of the agent's invocation.Strongly typed key of the output variable that will be used to store the result of the agent's invocation.
-
Element Details
-
name
String nameName of the agent. If not provided, method name will be used.- Returns:
- name of the agent.
- Default:
""
-
description
String descriptionDescription of the agent. It should be clear and descriptive to allow language model to understand the agent's purpose and its intended use.- Returns:
- description of the agent.
- Default:
""
-
outputKey
String outputKeyKey of the output variable that will be used to store the result of the agent's invocation.- Returns:
- name of the output variable.
- Default:
""
-
typedOutputKey
Strongly typed key of the output variable that will be used to store the result of the agent's invocation. It enforces type safety when retrieving the output from the agent's state and can be used in alternative to theoutputKey()attribute. Note that only one of those two attributes can be used at a time.- Returns:
- class representing the typed output variable.
- Default:
dev.langchain4j.agentic.Agent.NoTypedKey.class
-
subAgents
Class<?>[] subAgentsArray of sub-agents that will be invoked in sequence.- Returns:
- array of sub-agents.
-