From 8a49a26cbc6dac8e119abfbb83b5afc757f89680 Mon Sep 17 00:00:00 2001 From: Alessandro Benedetti Date: Thu, 5 Dec 2024 16:05:22 +0000 Subject: [PATCH] minor --- .../solr/llm/texttovector/model/SolrTextToVectorModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/modules/llm/src/java/org/apache/solr/llm/texttovector/model/SolrTextToVectorModel.java b/solr/modules/llm/src/java/org/apache/solr/llm/texttovector/model/SolrTextToVectorModel.java index 53413b9a3b9..f798f27db5d 100644 --- a/solr/modules/llm/src/java/org/apache/solr/llm/texttovector/model/SolrTextToVectorModel.java +++ b/solr/modules/llm/src/java/org/apache/solr/llm/texttovector/model/SolrTextToVectorModel.java @@ -63,7 +63,7 @@ public static SolrTextToVectorModel getInstance( Class modelClass = solrResourceLoader.findClass(className, EmbeddingModel.class); var builder = modelClass.getMethod("builder").invoke(null); if (params != null) { - /** + /* * This block of code has the responsibility of instantiate a {@link * dev.langchain4j.model.embedding.EmbeddingModel} using the params provided.classes have * params of The specific implementation of {@link