Interface EasyRagConfig
@ConfigRoot(phase=RUN_TIME)
@ConfigMapping(prefix="quarkus.langchain4j.easy-rag")
public interface EasyRagConfig
-
Method Summary
Modifier and TypeMethodDescriptionMaximum overlap (in tokens) when splitting documents.Maximum number of results to return when querying the retrieval augmentor.Maximum segment size when splitting documents, in tokens.path()Path to the directory containing the documents to be ingested.
-
Method Details
-
path
String path()Path to the directory containing the documents to be ingested. -
maxSegmentSize
Maximum segment size when splitting documents, in tokens. -
maxOverlapSize
Maximum overlap (in tokens) when splitting documents. -
maxResults
Maximum number of results to return when querying the retrieval augmentor.
-