fix chat char limit
This commit is contained in:
@@ -217,9 +217,7 @@ impl ClaudeSession {
|
||||
anyhow::bail!("claude returned empty response");
|
||||
}
|
||||
|
||||
// Truncate to 300 graphemes (Bluesky limit)
|
||||
let truncated: String = response.chars().take(300).collect();
|
||||
Ok(truncated)
|
||||
Ok(response)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user