"--threads " + configuration.getThreadCount(),
"--threads-batch " + configuration.getBatchThreadCount(),
"--mirostat 2",
- "--log-disable",
"--flash-attn",
+ "--no-warmup",
"--temp " + temperature,
"--ctx-size " + mailQuery.model.contextSizeTokens,
"--batch-size 8",
public String systemPrompt;
public String userPrompt;
public Model model;
+
+ @Override
+ public String toString() {
+ return "MailQuery{" +
+ "systemPrompt='" + systemPrompt + '\'' +
+ ", userPrompt='" + userPrompt + '\'' +
+ ", model=" + model +
+ '}';
+ }
}