fix: resolve compiler warnings across crates

- Remove unused assignment to final_output_called (returns immediately after)
- Mark cache_config field as #[allow(dead_code)] (reserved for future use)
- Mark print_status_line method as #[allow(dead_code)] (reserved for future use)
This commit is contained in:
Dhanji R. Prasanna
2025-12-25 18:47:22 +11:00
parent 258f9878ff
commit 3ece02ff31
3 changed files with 3 additions and 2 deletions

View File

@@ -125,6 +125,7 @@ pub struct AnthropicProvider {
model: String,
max_tokens: u32,
temperature: f32,
#[allow(dead_code)]
cache_config: Option<String>,
enable_1m_context: bool,
thinking_budget_tokens: Option<u32>,