(improvement)(chat) Split chat into three modules: server, api, and core. (#594)

This commit is contained in:
lexluo09
2024-01-04 16:56:49 +08:00
committed by GitHub
parent 0858c13365
commit 023e84c420
337 changed files with 2407 additions and 2715 deletions

View File

@@ -17,6 +17,9 @@ public class EmbeddingConfig {
@Value("${embedding.preset.collection:preset_query_collection}")
private String presetCollection;
@Value("${embedding.meta.collection:meta_collection}")
private String metaCollectionName;
@Value("${embedding.nResult:1}")
private int nResult;
@@ -34,4 +37,5 @@ public class EmbeddingConfig {
@Value("${inMemoryEmbeddingStore.persistent.path:/tmp}")
private String embeddingStorePersistentPath;
}