mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 12:37:55 +00:00
(improvement)(launcher)Move langchain4j related classes from launcher-common to common.
This commit is contained in:
30
common/src/main/java/dev/langchain4j/InProcess.java
Normal file
30
common/src/main/java/dev/langchain4j/InProcess.java
Normal file
@@ -0,0 +1,30 @@
|
||||
package dev.langchain4j;
|
||||
|
||||
class InProcess {
|
||||
|
||||
/***
|
||||
* the model local path
|
||||
*/
|
||||
private String modelPath;
|
||||
|
||||
/***
|
||||
* the model's vocabulary local path
|
||||
*/
|
||||
private String vocabularyPath;
|
||||
|
||||
public String getModelPath() {
|
||||
return modelPath;
|
||||
}
|
||||
|
||||
public void setModelPath(String modelPath) {
|
||||
this.modelPath = modelPath;
|
||||
}
|
||||
|
||||
public String getVocabularyPath() {
|
||||
return vocabularyPath;
|
||||
}
|
||||
|
||||
public void setVocabularyPath(String vocabularyPath) {
|
||||
this.vocabularyPath = vocabularyPath;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user