improve code_search nudge and increase anthropic tmieout

This commit is contained in:
Dhanji R. Prasanna
2025-11-05 15:05:29 +11:00
parent 53c8245942
commit d007e8f471
2 changed files with 38 additions and 10 deletions

View File

@@ -133,7 +133,7 @@ impl AnthropicProvider {
temperature: Option<f32>,
) -> Result<Self> {
let client = Client::builder()
.timeout(Duration::from_secs(60))
.timeout(Duration::from_secs(300))
.build()
.map_err(|e| anyhow!("Failed to create HTTP client: {}", e))?;