Package org.bsc.quarkus
Record Class LangGraphFlow
java.lang.Object
java.lang.Record
org.bsc.quarkus.LangGraphFlow
public record LangGraphFlow(List<LangGraphStreamingServer.ArgumentMetadata> inputArgs, String title, CompileConfig compileConfig, StateGraph<? extends AgentState> stateGraph)
extends Record
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionLangGraphFlow
(List<LangGraphStreamingServer.ArgumentMetadata> inputArgs, String title, CompileConfig compileConfig, StateGraph<? extends AgentState> stateGraph) Creates an instance of aLangGraphFlow
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LangGraphFlow.Builder
builder()
Returns the value of thecompileConfig
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theinputArgs
record component.StateGraph<? extends AgentState>
Returns the value of thestateGraph
record component.title()
Returns the value of thetitle
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
LangGraphFlow
public LangGraphFlow(List<LangGraphStreamingServer.ArgumentMetadata> inputArgs, String title, CompileConfig compileConfig, StateGraph<? extends AgentState> stateGraph) Creates an instance of aLangGraphFlow
record class.- Parameters:
inputArgs
- the value for theinputArgs
record componenttitle
- the value for thetitle
record componentcompileConfig
- the value for thecompileConfig
record componentstateGraph
- the value for thestateGraph
record component
-
-
Method Details
-
builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
inputArgs
Returns the value of theinputArgs
record component.- Returns:
- the value of the
inputArgs
record component
-
title
Returns the value of thetitle
record component.- Returns:
- the value of the
title
record component
-
compileConfig
Returns the value of thecompileConfig
record component.- Returns:
- the value of the
compileConfig
record component
-
stateGraph
Returns the value of thestateGraph
record component.- Returns:
- the value of the
stateGraph
record component
-