You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In agentic scenarios, a single session (user query) typically involves dozens of tool invocations. We often add cache points to each tool response to ensure all tool responses are cached.
e.g.
[
user message
tool use 1
...
tool use 50
final result
]
We want tool use 50 to benefit from the caching of tool use 1 to tool use 49