Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support userText rendering strategy in RetrievalAugmentationAdvisor #2468

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ThomasVitale
Copy link
Contributor

The input userText to the advisor might contain the templating special characters for other purposes than templating (e.g. when including source code). A new UserTextProcessor functional interface allows to customize how the userText is processed when taken as input to the RetrievalAugmentationAdvisor. By default, the PromptTemplateUserTextProcessor implementation is used. If you want to disable the rendering step altogether, you can use the NoOpUserTextProcessor implementation.

The input userText to the advisor might contain the templating special characters for other purposes than templating (e.g. when including source code). A new UserTextProcessor functional interface allows to customize how the userText is processed when taking as input to the RetrievalAugmentationAdvisor.  By default, the PromptTemplateUserTextProcessor implementation is used. If you want to disable the rendering step altogether, you can use the NoOpUserTextProcessor implementation.

Signed-off-by: Thomas Vitale <[email protected]>
@ThomasVitale
Copy link
Contributor Author

@marcushellberg what do you think?

@markpollack markpollack added this to the 1.0.0-M7 milestone Mar 25, 2025
@markpollack markpollack added the RAG Issues related to Retrieval Augmented Generation label Mar 25, 2025
@markpollack markpollack self-assigned this Mar 25, 2025
@ghdcksgml1
Copy link
Contributor

Even if rendering is not happening due to NoOpUserTextProcessor in RetrievalAugmentationAdvisor,
it seems like rendering still occur through AdvisedRequest.toPrompt

How should this issue be resolved?

AdvisedRequest.java #toPrompt()
		if (StringUtils.hasText(processedUserText)) {
			Map<String, Object> userParams = new HashMap<>(this.userParams());
			if (StringUtils.hasText(formatParam)) {
				userParams.put("spring_ai_soc_format", formatParam);
			}
			if (!CollectionUtils.isEmpty(userParams)) {
				processedUserText = new PromptTemplate(processedUserText, userParams).render();
			}
			messages.add(new UserMessage(processedUserText, this.media()));
		}

@ThomasVitale
Copy link
Contributor Author

That scenario will be handled by the new prompt templating solution that is coming up soon to allow greater flexibility and customisation options.

In this PR, we only address the specific use case of the prompt templating action in the RAG advisor.

@markpollack
Copy link
Member

ok to merge.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RAG Issues related to Retrieval Augmented Generation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants