(improvement)(headless)Change several info-mode logs to debug-mode

This commit is contained in:
jerryjzhang
2024-05-25 00:40:00 +08:00
parent 044cf8f31e
commit 6745df5a2e
8 changed files with 11 additions and 13 deletions

View File

@@ -17,16 +17,14 @@ public class LLMConfig {
private String modelName;
private Double temperature;
private Double temperature = 0.0d;
private Long timeOut;
private Long timeOut = 60L;
public LLMConfig(String provider, String baseUrl, String apiKey, String modelName) {
this.provider = provider;
this.baseUrl = baseUrl;
this.apiKey = apiKey;
this.modelName = modelName;
this.temperature = 0.0d;
this.timeOut = 60L;
}
}