
Spring AI : Advisors API
Once an AI feature moves beyond a demo, the model call is rarely the whole story. You need to log requests, restore conversation history, retrieve …
I am Siva, a passionate software engineer with expertise in building scalable web applications. I enjoy working across the stack and constantly learning new technologies.


Once an AI feature moves beyond a demo, the model call is rarely the whole story. You need to log requests, restore conversation history, retrieve …

Large language models are stateless. Send two independent requests to a model, and the second request knows nothing about the first one. That is …

Chat models are great at producing prose, but most applications don’t want prose — they want a Java object, a List<String>, or a Map they …

Calling an LLM is just an HTTP request. The trouble is that every provider has its own API, configuration, and response format. Spring AI handles that …

Most Spring Boot applications start with a beautifully boring main class. Then one day we need caching. We add @EnableCaching. Then we need async …

A few years ago, I was working at a fintech company in Germany. Our business unit planned to build a new offering for customers in Germany and the UK. …