feat: add prompt_cache_key for cross-call cache routing#653
Open
feat: add prompt_cache_key for cross-call cache routing#653
Conversation
539cf92 to
a54388c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
prompt_cache_key=agent_idto all OpenAI and Azure LLM API call sites so that calls for the same agent route to the same GPU server, enabling cross-call cache hits on the system prompt.Previously, each new call landed on a random server and started with a cold cache on the first turn. Now the first turn reuses the cached system prompt from previous calls for the same agent.
Caller-controlled opt-in: bolna sets
prompt_cache_keyonly whenagent_idis explicitly passed in kwargs. See https://github.com/bolna-ai/dashboard-backend/pull/2041 for the allowlist consumer.What changed
task_manager.pyagent_idto LLM when caller passes it in kwargsopenai_llm.pyextra_bodywithprompt_cache_keyin streaming and non-streaming chat completions; pop and merge for WebSocket pathazure_llm.pyagent_id;extra_bodyin streaming and non-streaming chat completionsopenai_base.pyextra_bodyin_build_responses_create_kwargsand_generate_responsesgraph_agent.py,knowledgebase_agent.pyagent_idthrough to LLM initializationAll changes guarded by
if self.agent_id, no effect when absent.