Class ConditionalAgentServiceImpl<T>
java.lang.Object
dev.langchain4j.agentic.internal.AbstractService<T,ConditionalAgentService<T>>
dev.langchain4j.agentic.workflow.impl.ConditionalAgentServiceImpl<T>
- All Implemented Interfaces:
ConditionalAgentService<T>
,WorkflowService<ConditionalAgentService<T>,
T>
public class ConditionalAgentServiceImpl<T>
extends AbstractService<T,ConditionalAgentService<T>>
implements ConditionalAgentService<T>
-
Field Summary
Fields inherited from class dev.langchain4j.agentic.internal.AbstractService
agentServiceClass, beforeCall, errorHandler, output, outputName
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builder()
static <T> ConditionalAgentServiceImpl
<T> subAgent
(Predicate<AgenticScope> condition, AgentExecutor agentExecutor) subAgents
(Predicate<AgenticScope> condition, Object... agents) subAgents
(Predicate<AgenticScope> condition, List<AgentExecutor> agentExecutors) subAgents
(List<AgentExecutor> agentExecutors) Methods inherited from class dev.langchain4j.agentic.internal.AbstractService
agentExecutors, beforeCall, errorHandler, output, outputName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface dev.langchain4j.agentic.workflow.WorkflowService
beforeCall, errorHandler, output, outputName
-
Method Details
-
build
- Specified by:
build
in interfaceWorkflowService<ConditionalAgentService<T>,
T>
-
builder
-
builder
-
subAgents
- Specified by:
subAgents
in interfaceWorkflowService<ConditionalAgentService<T>,
T> - Overrides:
subAgents
in classAbstractService<T,
ConditionalAgentService<T>>
-
subAgents
public ConditionalAgentServiceImpl<T> subAgents(Predicate<AgenticScope> condition, Object... agents) - Specified by:
subAgents
in interfaceConditionalAgentService<T>
-
subAgents
- Specified by:
subAgents
in interfaceWorkflowService<ConditionalAgentService<T>,
T> - Overrides:
subAgents
in classAbstractService<T,
ConditionalAgentService<T>>
-
subAgents
public ConditionalAgentServiceImpl<T> subAgents(Predicate<AgenticScope> condition, List<AgentExecutor> agentExecutors) - Specified by:
subAgents
in interfaceConditionalAgentService<T>
-
subAgent
public ConditionalAgentServiceImpl<T> subAgent(Predicate<AgenticScope> condition, AgentExecutor agentExecutor) - Specified by:
subAgent
in interfaceConditionalAgentService<T>
-