Class LangGraphFlow.Builder

java.lang.Object
org.bsc.quarkus.LangGraphFlow.Builder
Enclosing class:
LangGraphFlow

public static class LangGraphFlow.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • title

      public LangGraphFlow.Builder title(String title)
      Sets the title for the server.
      Parameters:
      title - the title to be set
      Returns:
      the Builder instance
    • addInputStringArg

      public LangGraphFlow.Builder addInputStringArg(String name, boolean required)
      Adds an input string argument to the server configuration.
      Parameters:
      name - the name of the argument
      required - whether the argument is required
      Returns:
      the Builder instance
    • addInputStringArg

      public LangGraphFlow.Builder addInputStringArg(String name)
      Adds an input string argument to the server configuration with required set to true.
      Parameters:
      name - the name of the argument
      Returns:
      the Builder instance
    • addInputImageArg

      public LangGraphFlow.Builder addInputImageArg(String name, boolean required)
      Adds an input image argument to the server configuration.
      Parameters:
      name - the name of the argument
      required - whether the argument is required
      Returns:
      the Builder instance
    • addInputImageArg

      public LangGraphFlow.Builder addInputImageArg(String name)
      Adds an input image argument to the server configuration with required set to true.
      Parameters:
      name - the name of the argument
      Returns:
      the Builder instance
    • compileConfig

      public LangGraphFlow.Builder compileConfig(CompileConfig compileConfig)
      Sets the checkpoint saver for the server.
      Parameters:
      compileConfig - the graph compiler config to be used
      Returns:
      the Builder instance
    • stateGraph

      public <State extends AgentState> LangGraphFlow.Builder stateGraph(StateGraph<State> stateGraph)
      Sets the state graph for the server.
      Type Parameters:
      State - the type of the state
      Parameters:
      stateGraph - the state graph to be used
      Returns:
      the Builder instance
    • build

      public LangGraphFlow build()