Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llm_client/src/clients/anthropic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ impl AnthropicRequest {
.filter(|message| message.role().is_user() || message.role().is_assistant())
.map(|message| {
let mut content = Vec::new();
let mut anthropic_message_content =
let anthropic_message_content =
AnthropicMessageContent::text(message.content().to_owned(), None);

let images = message
Expand Down Expand Up @@ -936,4 +936,4 @@ impl LLMClient for AnthropicClient {

Ok(buffered_string)
}
}
}
6 changes: 3 additions & 3 deletions sidecar/src/agentic/tool/session/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1138,8 +1138,8 @@ impl SessionService {

pub async fn get_mcts_data(
&self,
session_id: &str,
exchange_id: &str,
_session_id: &str,
_exchange_id: &str,
storage_path: String,
) -> Result<SearchTreeMinimal, SymbolError> {
let session = self.load_from_storage(storage_path).await?;
Expand Down Expand Up @@ -1366,4 +1366,4 @@ pub enum TestGenerateCompletion {
LLMChoseToFinish(String),
/// Hit the maximum iteration limit (lower confidence)
HitIterationLimit(String),
}
}