Show HN: Butter – A Behavior Cache for LLMs
21–25 of 25 posts
Re: Show HN: Butter – A Behavior Cache for LLMs
#22We spoke to a number of browser agent companies who said deterministic RPA with an AI fallback was their "secret" :)
Very, very common approach! Wrote more on that here: https://blog.butter.dev/the-messy-world-of-deterministic-age...
I’d love your thoughts on my addition, autolearn.dev — voyager behind MCP.
The proxy format is exactly what I needed!
Thanks
Re: Show HN: Butter – A Behavior Cache for LLMs
#23We often will repeat calls to try again. Or sometimes we make the same call multiple times to get multiple answers and then score or merge them. Is this used only in cases where you assume the answer from your first call is correct?
I’d love your opinion here! Right now, we assume first call is correct, and will eagerly take the first match we find while traversing the tree. One of the worst things that could currently happen is we cache a bad run, and now instead of occasional failures you’re given 100% failures. A few approaches we’ve considered - maintain a staging tree, and only promote to live if multiple sibling nodes (messages) look simil…