Contents
-
Terminally Deprecated Elements
Please use another constructor with a new ContentRetriever
instead.
Use this instead:
.retrievalAugmentor(DefaultRetrievalAugmentor.builder()
.contentInjector(DefaultContentInjector.builder()
.promptTemplate(promptTemplate)
.build())
.build());
Use
AiServices.contentRetriever(ContentRetriever)
(e.g.
EmbeddingStoreContentRetriever
) instead.
Configures a retriever that will be invoked on every method call to fetch relevant information
related to the current user message from an underlying source (e.g., embedding store).
This relevant information is automatically injected into the message sent to the LLM.
-
Deprecated Methods
Use this instead:
.retrievalAugmentor(DefaultRetrievalAugmentor.builder()
.contentInjector(DefaultContentInjector.builder()
.promptTemplate(promptTemplate)
.build())
.build());
Use
AiServices.contentRetriever(ContentRetriever)
(e.g.
EmbeddingStoreContentRetriever
) instead.
Configures a retriever that will be invoked on every method call to fetch relevant information
related to the current user message from an underlying source (e.g., embedding store).
This relevant information is automatically injected into the message sent to the LLM.
-
Deprecated Constructors
Please use another constructor with a new ContentRetriever
instead.