Class Model
java.lang.Object
eu.svjatoslav.alyverkko_cli.configuration.Model
Represents a single AI model configuration entry, including alias,
path to the model file, token context size, and an optional
end-of-text marker.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidPrints the model's metadata to standard output in a consistent format.
-
Constructor Details
-
Model
public Model()
-
-
Method Details
-
printModelDetails
public void printModelDetails()Prints the model's metadata to standard output in a consistent format. This includes the model's alias, filesystem path, and context token capacity. The output format is designed to be both human-readable and machine-parsable when needed.
Typical output:
Model: default Path: /path/to/model.gguf Context size: 32768
-