Class TextToVectorModelStore
- java.lang.Object
-
- org.apache.solr.llm.texttovector.store.TextToVectorModelStore
-
public class TextToVectorModelStore extends Object
Simple store to manage CRUD operations on theSolrTextToVectorModel
-
-
Constructor Summary
Constructors Constructor Description TextToVectorModelStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addModel(SolrTextToVectorModel modeldata)
void
clear()
SolrTextToVectorModel
delete(String modelName)
SolrTextToVectorModel
getModel(String name)
List<SolrTextToVectorModel>
getModels()
String
toString()
-
-
-
Method Detail
-
getModel
public SolrTextToVectorModel getModel(String name)
-
clear
public void clear()
-
getModels
public List<SolrTextToVectorModel> getModels()
-
delete
public SolrTextToVectorModel delete(String modelName)
-
addModel
public void addModel(SolrTextToVectorModel modeldata) throws TextToVectorModelException
- Throws:
TextToVectorModelException
-
-