mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-15 14:36:47 +00:00
(improvement)(build) Add spotless during the build process. (#1639)
This commit is contained in:
@@ -18,4 +18,4 @@ class ChatModelProperties {
|
||||
private Double penaltyScore;
|
||||
private Boolean logRequests;
|
||||
private Boolean logResponses;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,5 +15,4 @@ class EmbeddingModelProperties {
|
||||
private String user;
|
||||
private Boolean logRequests;
|
||||
private Boolean logResponses;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,5 +18,4 @@ class LanguageModelProperties {
|
||||
private Double penaltyScore;
|
||||
private Boolean logRequests;
|
||||
private Boolean logResponses;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,4 +86,4 @@ public class LocalAiAutoConfig {
|
||||
.logResponses(embeddingModelProperties.getLogResponses())
|
||||
.build();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,18 +12,13 @@ public class Properties {
|
||||
|
||||
static final String PREFIX = "langchain4j.local-ai";
|
||||
|
||||
@NestedConfigurationProperty
|
||||
ChatModelProperties chatModel;
|
||||
@NestedConfigurationProperty ChatModelProperties chatModel;
|
||||
|
||||
@NestedConfigurationProperty
|
||||
ChatModelProperties streamingChatModel;
|
||||
@NestedConfigurationProperty ChatModelProperties streamingChatModel;
|
||||
|
||||
@NestedConfigurationProperty
|
||||
LanguageModelProperties languageModel;
|
||||
@NestedConfigurationProperty LanguageModelProperties languageModel;
|
||||
|
||||
@NestedConfigurationProperty
|
||||
LanguageModelProperties streamingLanguageModel;
|
||||
@NestedConfigurationProperty LanguageModelProperties streamingLanguageModel;
|
||||
|
||||
@NestedConfigurationProperty
|
||||
EmbeddingModelProperties embeddingModel;
|
||||
@NestedConfigurationProperty EmbeddingModelProperties embeddingModel;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user