Replies: 1 comment 1 reply
This project is interesting. I like the annotation-based approach because it keeps cost guidelines close to the code. This makes it easy for developers to see which LLM operations are protected. However, I would avoid placing budget limits or model details directly in annotations since those values often change. Configuration files seem like a better place for that information. |
Uh oh!
There was an error while loading. Please reload this page.
Hi everyone,
I’ve been experimenting with a small open-source Spring Boot starter called Guardrail4J.
The idea is to add cost guardrails around LLM calls in Java/Spring apps using an annotation-based approach:
All reactions