Class Model

java.lang.Object
eu.svjatoslav.alyverkko_cli.model.Model

public class Model extends Object
  • Field Details

    • filesystemPath

      public final File filesystemPath
      The path to the file system where the model will be stored.
    • contextSizeTokens

      public final int contextSizeTokens
      The size of the context in terms of tokens.
    • alias

      public final String alias
      The alias for the model.
    • endOfTextMarker

      public final String endOfTextMarker
      The marker used to signify the end of AI generated text.
  • Constructor Details

    • Model

      public Model(File filesystemPath, int contextSizeTokens, String modelAlias, String endOfTextMarker)
      The constructor for the Model class.
      Parameters:
      filesystemPath - The path to the file system where the model will be stored.
      contextSizeTokens - The size of the context in terms of tokens.
      modelAlias - The alias for the model.
      endOfTextMarker - The marker used to signify the end of AI generated text.
  • Method Details

    • printModelDetails

      public void printModelDetails()
      Prints the details of the model.