Init prompt store in agent eval (#29068)

Needed after #28915

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-04-18 14:06:34 -06:00 committed by GitHub
parent b1d5918fdc
commit 327fee4d22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -478,6 +478,7 @@ pub fn init(cx: &mut App) -> Arc<AgentAppState> {
languages::init(languages.clone(), node_runtime.clone(), cx);
assistant_tools::init(client.http_client().clone(), cx);
context_server::init(cx);
prompt_store::init(cx);
let stdout_is_a_pty = false;
let prompt_builder = PromptBuilder::load(fs.clone(), stdout_is_a_pty, cx);
agent::init(fs.clone(), client.clone(), prompt_builder.clone(), cx);