Index

A B C E F G I J O R S T V W 
All Classes and Interfaces|All Packages

A

Agent - Class in org.bsc.langgraph4j.agentexecutor
Represents an agent that can process chat messages and execute actions using specified tools.
Agent(ChatLanguageModel, StreamingChatLanguageModel, List<ToolSpecification>) - Constructor for class org.bsc.langgraph4j.agentexecutor.Agent
 
Agent.Builder - Class in org.bsc.langgraph4j.agentexecutor
 
AgentExecutor - Interface in org.bsc.langgraph4j.agentexecutor
Interface representing an Agent Executor.
AgentExecutor.Builder - Class in org.bsc.langgraph4j.agentexecutor
Builder class for constructing a graph of agent execution.
AgentExecutor.GraphBuilder - Class in org.bsc.langgraph4j.agentexecutor
Deprecated.
AgentExecutor.Serializers - Enum Class in org.bsc.langgraph4j.agentexecutor
Enum representing different serializers for the agent state.
AgentExecutor.State - Class in org.bsc.langgraph4j.agentexecutor
Represents the state of an agent.
apply(AgentExecutor.State) - Method in class org.bsc.langgraph4j.agentexecutor.actions.CallAgent
Applies the action to the given state and returns the result.
apply(AgentExecutor.State) - Method in class org.bsc.langgraph4j.agentexecutor.actions.ExecuteTools
Applies the tool execution logic based on the provided agent state.

B

build() - Method in class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 
build() - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Builds the state graph.
builder() - Static method in class org.bsc.langgraph4j.agentexecutor.Agent
 
builder() - Static method in interface org.bsc.langgraph4j.agentexecutor.AgentExecutor
Creates a new GraphBuilder instance.
Builder() - Constructor for class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 
Builder() - Constructor for class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
 

C

CallAgent - Class in org.bsc.langgraph4j.agentexecutor.actions
The CallAgent class implements the NodeAction interface for handling actions related to an AgentExecutor's state.
CallAgent(Agent) - Constructor for class org.bsc.langgraph4j.agentexecutor.actions.CallAgent
Constructs a CallAgent with the specified agent.
chatLanguageModel(ChatLanguageModel) - Method in class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 
chatLanguageModel(ChatLanguageModel) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the chat language model for the graph builder.
chatLanguageModel(StreamingChatLanguageModel) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the streaming chat language model for the graph builder.

E

execute(List<ChatMessage>) - Method in class org.bsc.langgraph4j.agentexecutor.Agent
Executes the agent's action based on the input and intermediate steps, returning a response.
execute(List<ChatMessage>, StreamingChatResponseHandler) - Method in class org.bsc.langgraph4j.agentexecutor.Agent
Executes the agent's action based on the input and intermediate steps, using a streaming response handler.
ExecuteTools - Class in org.bsc.langgraph4j.agentexecutor.actions
The ExecuteTools class implements the NodeAction interface for handling actions related to executing tools within an agent's context.
ExecuteTools(ToolNode) - Constructor for class org.bsc.langgraph4j.agentexecutor.actions.ExecuteTools
Constructs an ExecuteTools instance with the specified agent and tool node.

F

finalResponse() - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.State
Retrieves the agent final response.

G

graphBuilder() - Static method in interface org.bsc.langgraph4j.agentexecutor.AgentExecutor
Deprecated.
GraphBuilder() - Constructor for class org.bsc.langgraph4j.agentexecutor.AgentExecutor.GraphBuilder
Deprecated.
 

I

isStreaming() - Method in class org.bsc.langgraph4j.agentexecutor.Agent
Checks if the agent is currently streaming.

J

JSON - Enum constant in enum class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Serializers
 
JSONStateSerializer - Class in org.bsc.langgraph4j.agentexecutor.serializer.jackson
JSONStateSerializer is a class that extends JacksonStateSerializer for serializing and deserializing the state of an AgentExecutor using JSON format.
JSONStateSerializer() - Constructor for class org.bsc.langgraph4j.agentexecutor.serializer.jackson.JSONStateSerializer
Constructs a new JSONStateSerializer and registers custom deserializers for various agent-related classes.

O

object() - Method in enum class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Serializers
Retrieves the state serializer.
objectsWithTools(List<Object>) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Deprecated.
org.bsc.langgraph4j.agentexecutor - package org.bsc.langgraph4j.agentexecutor
 
org.bsc.langgraph4j.agentexecutor.actions - package org.bsc.langgraph4j.agentexecutor.actions
 
org.bsc.langgraph4j.agentexecutor.serializer.jackson - package org.bsc.langgraph4j.agentexecutor.serializer.jackson
 
org.bsc.langgraph4j.agentexecutor.serializer.std - package org.bsc.langgraph4j.agentexecutor.serializer.std
 

R

read(ObjectInput) - Method in class org.bsc.langgraph4j.agentexecutor.serializer.jackson.JSONStateSerializer
Deserializes an AgentExecutor.State object from an input stream in JSON format.

S

State(Map<String, Object>) - Constructor for class org.bsc.langgraph4j.agentexecutor.AgentExecutor.State
Constructs a new State with the given initialization data.
stateSerializer(StateSerializer<AgentExecutor.State>) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the state serializer for the graph builder.
STD - Enum constant in enum class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Serializers
 
STDStateSerializer - Class in org.bsc.langgraph4j.agentexecutor.serializer.std
The STDStateSerializer class is responsible for serializing the state of the AgentExecutor.
STDStateSerializer() - Constructor for class org.bsc.langgraph4j.agentexecutor.serializer.std.STDStateSerializer
Constructs a new instance of STDStateSerializer.
streamingChatLanguageModel(StreamingChatLanguageModel) - Method in class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 

T

tool(ToolSpecification) - Method in class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 
tools(Collection<? extends ToolSpecification>) - Method in class org.bsc.langgraph4j.agentexecutor.Agent.Builder
 
toolSpecification(ToolSpecification, ToolExecutor) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the tool specification with executor for the graph builder.
toolSpecification(Object) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the tool specification for the graph builder.
toolSpecification(ToolNode.Specification) - Method in class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Builder
Sets the tool specification for the graph builder.

V

valueOf(String) - Static method in enum class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Serializers
Returns the enum constant of this class with the specified name.
values() - Static method in enum class org.bsc.langgraph4j.agentexecutor.AgentExecutor.Serializers
Returns an array containing the constants of this enum class, in the order they are declared.

W

write(AgentExecutor.State, ObjectOutput) - Method in class org.bsc.langgraph4j.agentexecutor.serializer.jackson.JSONStateSerializer
Serializes the given AgentExecutor.State object to an output stream in JSON format.
A B C E F G I J O R S T V W 
All Classes and Interfaces|All Packages