All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fi.evolver.ai.spring.Model Maven / Gradle / Ivy

package fi.evolver.ai.spring;

public record Model(
		String name,
		int tokenLimit,
		Tokenizer tokenizer) {

	public Model withName(String name) {
		return new Model<>(name, tokenLimit, tokenizer);
	}

	public Model withTokenLimit(int tokenLimit) {
		return new Model<>(name, tokenLimit, tokenizer);
	}

	public Model withTokenizer(Tokenizer tokenizer) {
		return new Model<>(name, tokenLimit, tokenizer);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy