Interface PromptOperation


public interface PromptOperation
An operation to be performed using AI.
Since:
5.2.240903
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    A builder to create an operation definition with.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a builder to create a new operation definition with.
    @NotNull UUID
    Returns the identifier of this operation.
    @NotNull String
    Returns the name to visualize the operation with.
    @Unmodifiable @NotNull List<UUID>
    Returns a list of option identifiers the operation is configurable with.
    @NotNull String
    The prompt to build the generative AI request with.
    @Unmodifiable @NotNull Set<String>
    Returns the tags associated with this operation.
    boolean
    Returns whether the operation requires input text.
  • Method Details

    • builder

      @NotNull static PromptOperation.Builder builder()
      Returns a builder to create a new operation definition with.
      Returns:
      The builder instance.
      Since:
      5.2.240903
    • getId

      @NotNull @NotNull UUID getId()
      Returns the identifier of this operation.
      Returns:
      The operation id.
      Since:
      5.2.240903
    • getTags

      @NotNull @Unmodifiable @NotNull Set<String> getTags()
      Returns the tags associated with this operation.
      Returns:
      The operation tags.
      Since:
      5.2.240903
    • getName

      @NotNull @NotNull String getName()
      Returns the name to visualize the operation with.
      Returns:
      The operation name.
      Since:
      5.2.240903
    • getPrompt

      @NotNull @NotNull String getPrompt()
      The prompt to build the generative AI request with.
      Returns:
      The operation prompt.
      Since:
      5.2.240903
    • isTextRequired

      boolean isTextRequired()
      Returns whether the operation requires input text.
      Returns:
      true if the operation requires input text, false otherwise.
      Since:
      5.2.240903
    • getOptions

      @NotNull @Unmodifiable @NotNull List<UUID> getOptions()
      Returns a list of option identifiers the operation is configurable with.
      Returns:
      The option identifiers of this operation.
      Since:
      5.2.240903