Skip to content

Commit e5a95b5

Browse files
haasonsaasclaude
andcommitted
Fix cargo fmt formatting
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8c3b4ec commit e5a95b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/adapters/llm.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ pub fn create_adapter(config: &ModelConfig) -> Result<Box<dyn LLMAdapter>> {
107107
// Route anthropic/ prefix directly to the Anthropic adapter
108108
let mut anth_config = config;
109109
anth_config.model_name = model;
110-
return Ok(Box::new(crate::adapters::AnthropicAdapter::new(anth_config)?));
110+
return Ok(Box::new(crate::adapters::AnthropicAdapter::new(
111+
anth_config,
112+
)?));
111113
}
112114
_ => {
113115
// Other vendor prefixes (e.g. openai/, meta-llama/) → OpenRouter

0 commit comments

Comments
 (0)