-
|
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
ChatClientbean is configured so that all available advisors (such asChatMemoryAdvisorandSpringAiPlaygroundRagAdvisor) 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
ChatMemoryAdvisorandSpringAiPlaygroundRagAdvisorare actually being created and injected into theadvisorsarray.A quick way to confirm:
chatClientbean method.