mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 04:27:39 +00:00
30 lines
565 B
Java
30 lines
565 B
Java
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;
|
|
}
|
|
} |