Skip to content

Commit 3e0d850

Browse files
committed
removed unwanted mut variable
1 parent 983a770 commit 3e0d850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/providers/anthropic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl LlmProvider for AnthropicProvider {
3939
// ── Convert messages ───────────────────────────────────────────────
4040
// Anthropic separates system messages and uses a content-block format
4141
// for tool results. We extract an optional leading system message.
42-
let mut system_prompt: Option<String> = None;
42+
let system_prompt: Option<String> = None;
4343
let mut anthropic_messages: Vec<Value> = vec![];
4444

4545
for msg in messages {

0 commit comments

Comments
 (0)