-
Hi Jemin, Regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, In Spring AI Playground, the @Bean
public ChatClient chatClient(ChatClient.Builder chatClientBuilder, Advisor[] advisors) {
return chatClientBuilder.defaultAdvisors(advisors).build();
} If this part is present, the next thing to verify is whether the A quick way to confirm:
That should help narrow it down to whether it’s a bean registration problem or a wiring issue. Hope this helps you pin it down quickly! Best, |
Beta Was this translation helpful? Give feedback.
Hi,
In Spring AI Playground, the
ChatClient
bean is configured so that all available advisors (such asChatMemoryAdvisor
andSpringAiPlaygroundRagAdvisor
) are automatically applied. Could you check if you have a configuration like this?If this part is present, the next thing to verify is whether the
ChatMemoryAdvisor
andSpringAiPlaygroundRagAdvisor
are actually being created and injected into theadvisors
array.A quick way to confirm:
chatClient
bean method.