Use the working dir from the session (#7285)

This commit is contained in:
Zane
2026-02-17 18:10:52 -08:00
committed by GitHub
parent e32720fcfb
commit 7eb4e442a7
6 changed files with 28 additions and 13 deletions
+4 -1
View File
@@ -120,7 +120,10 @@ impl ProviderTester {
.await
.expect("get_prefixed_tools failed");
let info = self.extension_manager.get_extensions_info().await;
let info = self
.extension_manager
.get_extensions_info(std::path::Path::new("."))
.await;
let system = PromptManager::new()
.builder()
.with_extensions(info.into_iter())