pub mod project; use anyhow::Result; use g3_config::Config; use g3_execution::CodeExecutor; use g3_providers::{CompletionRequest, Message, MessageRole, ProviderRegistry, Tool}; use serde::{Deserialize, Serialize}; use serde_json::json; use std::time::{Duration, Instant}; use tokio_util::sync::CancellationToken; use tracing::{debug, error, info, warn}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct ToolCall { pub tool: String, pub args: serde_json::Value, } #[derive(Debug, Clone)] pub enum StreamState { Generating, ToolDetected(ToolCall), Executing, Resuming, } /// Modern streaming tool parser that properly handles native tool calls and SSE chunks #[derive(Debug)] pub struct StreamingToolParser { /// Buffer for accumulating text content text_buffer: String, /// Buffer for accumulating native tool calls native_tool_calls: Vec, /// Whether we've received a message_stop event message_stopped: bool, /// Whether we're currently in a JSON tool call (for fallback parsing) in_json_tool_call: bool, /// Start position of JSON tool call (for fallback parsing) json_tool_start: Option, } impl StreamingToolParser { pub fn new() -> Self { Self { text_buffer: String::new(), native_tool_calls: Vec::new(), message_stopped: false, in_json_tool_call: false, json_tool_start: None, } } /// Process a streaming chunk and return completed tool calls if any pub fn process_chunk(&mut self, chunk: &g3_providers::CompletionChunk) -> Vec { let mut completed_tools = Vec::new(); // Add text content to buffer if !chunk.content.is_empty() { self.text_buffer.push_str(&chunk.content); } // Handle native tool calls if let Some(ref tool_calls) = chunk.tool_calls { debug!("Received native tool calls: {:?}", tool_calls); // Accumulate native tool calls for tool_call in tool_calls { self.native_tool_calls.push(tool_call.clone()); } } // Check if message is finished/stopped if chunk.finished { self.message_stopped = true; debug!("Message finished, processing accumulated tool calls"); } // If we have native tool calls and the message is stopped, return them if self.message_stopped && !self.native_tool_calls.is_empty() { debug!( "Converting {} native tool calls", self.native_tool_calls.len() ); for native_tool in &self.native_tool_calls { let converted_tool = ToolCall { tool: native_tool.tool.clone(), args: native_tool.args.clone(), }; completed_tools.push(converted_tool); } // Clear native tool calls after processing self.native_tool_calls.clear(); } // Fallback: Try to parse JSON tool calls from text if no native tool calls if completed_tools.is_empty() && !chunk.content.is_empty() { if let Some(json_tool) = self.try_parse_json_tool_call(&chunk.content) { completed_tools.push(json_tool); } } completed_tools } /// Fallback method to parse JSON tool calls from text content fn try_parse_json_tool_call(&mut self, _content: &str) -> Option { // Look for JSON tool call patterns let patterns = [ r#"{"tool":"#, r#"{ "tool":"#, r#"{"tool" :"#, r#"{ "tool" :"#, ]; // If we're not currently in a JSON tool call, look for the start if !self.in_json_tool_call { for pattern in &patterns { if let Some(pos) = self.text_buffer.rfind(pattern) { debug!( "Found JSON tool call pattern '{}' at position {}", pattern, pos ); self.in_json_tool_call = true; self.json_tool_start = Some(pos); break; } } } // If we're in a JSON tool call, try to find the end and parse it if self.in_json_tool_call { if let Some(start_pos) = self.json_tool_start { let json_text = &self.text_buffer[start_pos..]; // Try to find a complete JSON object let mut brace_count = 0; let mut in_string = false; let mut escape_next = false; for (i, ch) in json_text.char_indices() { if escape_next { escape_next = false; continue; } match ch { '\\' => escape_next = true, '"' if !escape_next => in_string = !in_string, '{' if !in_string => brace_count += 1, '}' if !in_string => { brace_count -= 1; if brace_count == 0 { // Found complete JSON object let json_str = &json_text[..=i]; debug!("Attempting to parse JSON tool call: {}", json_str); if let Ok(tool_call) = serde_json::from_str::(json_str) { debug!("Successfully parsed JSON tool call: {:?}", tool_call); // Reset JSON parsing state self.in_json_tool_call = false; self.json_tool_start = None; return Some(tool_call); } else { debug!("Failed to parse JSON tool call: {}", json_str); // Reset and continue looking self.in_json_tool_call = false; self.json_tool_start = None; } break; } } _ => {} } } } } None } /// Get the accumulated text content (excluding tool calls) pub fn get_text_content(&self) -> &str { &self.text_buffer } /// Get content before a specific position (for display purposes) pub fn get_content_before_position(&self, pos: usize) -> String { if pos <= self.text_buffer.len() { self.text_buffer[..pos].to_string() } else { self.text_buffer.clone() } } /// Check if the message has been stopped/finished pub fn is_message_stopped(&self) -> bool { self.message_stopped } /// Reset the parser state for a new message pub fn reset(&mut self) { self.text_buffer.clear(); self.native_tool_calls.clear(); self.message_stopped = false; self.in_json_tool_call = false; self.json_tool_start = None; } /// Get the current text buffer length (for position tracking) pub fn text_buffer_len(&self) -> usize { self.text_buffer.len() } } #[derive(Debug, Clone)] pub struct ContextWindow { pub used_tokens: u32, pub total_tokens: u32, pub conversation_history: Vec, } impl ContextWindow { pub fn new(total_tokens: u32) -> Self { Self { used_tokens: 0, total_tokens, conversation_history: Vec::new(), } } pub fn add_message(&mut self, message: Message) { // Skip messages with empty content to avoid API errors if message.content.trim().is_empty() { warn!("Skipping empty message to avoid API error"); return; } // Better token estimation based on content type let estimated_tokens = Self::estimate_tokens(&message.content); self.used_tokens += estimated_tokens; self.conversation_history.push(message); } /// More accurate token estimation fn estimate_tokens(text: &str) -> u32 { // Better heuristic: // - Average English text: ~4 characters per token // - Code/JSON: ~3 characters per token (more symbols) // - Add 10% buffer for safety let base_estimate = if text.contains("{") || text.contains("```") || text.contains("fn ") { (text.len() as f32 / 3.0).ceil() as u32 // Code/JSON } else { (text.len() as f32 / 4.0).ceil() as u32 // Regular text }; (base_estimate as f32 * 1.1).ceil() as u32 // Add 10% buffer } pub fn update_usage(&mut self, usage: &g3_providers::Usage) { // Update with actual token usage from the provider self.used_tokens = usage.total_tokens; } pub fn percentage_used(&self) -> f32 { if self.total_tokens == 0 { 0.0 } else { (self.used_tokens as f32 / self.total_tokens as f32) * 100.0 } } pub fn remaining_tokens(&self) -> u32 { self.total_tokens.saturating_sub(self.used_tokens) } /// Check if we should trigger summarization (at 80% capacity) pub fn should_summarize(&self) -> bool { // Trigger at 80% OR if we're getting close to absolute limits // This prevents issues with models that have large contexts but still hit limits let percentage_trigger = self.percentage_used() >= 80.0; // Also trigger if we're approaching common token limits // Most models start having issues around 150k tokens let absolute_trigger = self.used_tokens > 150_000; percentage_trigger || absolute_trigger } /// Create a summary request prompt for the current conversation pub fn create_summary_prompt(&self) -> String { "Please provide a comprehensive summary of our conversation so far. Include: 1. **Main Topic/Goal**: What is the primary task or objective being worked on? 2. **Key Decisions**: What important decisions have been made? 3. **Actions Taken**: What specific actions, commands, or code changes have been completed? 4. **Current State**: What is the current status of the work? 5. **Important Context**: Any critical information, file paths, configurations, or constraints that should be remembered? 6. **Pending Items**: What remains to be done or what was the user's last request? Format this as a detailed but concise summary that can be used to resume the conversation from scratch while maintaining full context.".to_string() } /// Reset the context window with a summary pub fn reset_with_summary(&mut self, summary: String, latest_user_message: Option) { // Clear the conversation history self.conversation_history.clear(); self.used_tokens = 0; // Add the summary as a system message let summary_message = Message { role: MessageRole::System, content: format!("Previous conversation summary:\n\n{}", summary), }; self.add_message(summary_message); // Add the latest user message if provided if let Some(user_msg) = latest_user_message { self.add_message(Message { role: MessageRole::User, content: user_msg, }); } } } pub struct Agent { providers: ProviderRegistry, context_window: ContextWindow, session_id: Option, tool_call_metrics: Vec<(String, Duration, bool)>, // (tool_name, duration, success) } impl Agent { pub async fn new(config: Config) -> Result { let mut providers = ProviderRegistry::new(); // Only register providers that are configured AND selected as the default provider // This prevents unnecessary initialization of heavy providers like embedded models // Register embedded provider if configured AND it's the default provider if let Some(embedded_config) = &config.providers.embedded { if config.providers.default_provider == "embedded" { info!("Initializing embedded provider (selected as default)"); let embedded_provider = crate::providers::embedded::EmbeddedProvider::new( embedded_config.model_path.clone(), embedded_config.model_type.clone(), embedded_config.context_length, embedded_config.max_tokens, embedded_config.temperature, embedded_config.gpu_layers, embedded_config.threads, )?; providers.register(embedded_provider); } else { info!("Embedded provider configured but not selected as default, skipping initialization"); } } // Register Anthropic provider if configured AND it's the default provider if let Some(anthropic_config) = &config.providers.anthropic { if config.providers.default_provider == "anthropic" { info!("Initializing Anthropic provider (selected as default)"); let anthropic_provider = g3_providers::AnthropicProvider::new( anthropic_config.api_key.clone(), Some(anthropic_config.model.clone()), anthropic_config.max_tokens, anthropic_config.temperature, )?; providers.register(anthropic_provider); } else { info!("Anthropic provider configured but not selected as default, skipping initialization"); } } // Register Databricks provider if configured AND it's the default provider if let Some(databricks_config) = &config.providers.databricks { if config.providers.default_provider == "databricks" { info!("Initializing Databricks provider (selected as default)"); let databricks_provider = if let Some(token) = &databricks_config.token { // Use token-based authentication g3_providers::DatabricksProvider::from_token( databricks_config.host.clone(), token.clone(), databricks_config.model.clone(), databricks_config.max_tokens, databricks_config.temperature, )? } else { // Use OAuth authentication g3_providers::DatabricksProvider::from_oauth( databricks_config.host.clone(), databricks_config.model.clone(), databricks_config.max_tokens, databricks_config.temperature, ) .await? }; providers.register(databricks_provider); } else { info!("Databricks provider configured but not selected as default, skipping initialization"); } } // Set default provider debug!( "Setting default provider to: {}", config.providers.default_provider ); providers.set_default(&config.providers.default_provider)?; debug!("Default provider set successfully"); // Determine context window size based on active provider let context_length = Self::determine_context_length(&config, &providers)?; let context_window = ContextWindow::new(context_length); Ok(Self { providers, context_window, session_id: None, tool_call_metrics: Vec::new(), }) } fn determine_context_length(config: &Config, providers: &ProviderRegistry) -> Result { // Get the active provider to determine context length let provider = providers.get(None)?; let provider_name = provider.name(); let model_name = provider.model(); // Use provider-specific context length if available, otherwise fall back to agent config let context_length = match provider_name { "embedded" => { // For embedded models, use the configured context_length or model-specific defaults if let Some(embedded_config) = &config.providers.embedded { embedded_config.context_length.unwrap_or_else(|| { // Model-specific defaults for embedded models match embedded_config.model_type.to_lowercase().as_str() { "codellama" => 16384, // CodeLlama supports 16k context "llama" => 4096, // Base Llama models "mistral" => 8192, // Mistral models "qwen" => 32768, // Qwen2.5 supports 32k context _ => 4096, // Conservative default } }) } else { config.agent.max_context_length as u32 } } "anthropic" => { // Claude models have large context windows 200000 // Default for Claude models } "databricks" => { // Databricks models have varying context windows depending on the model if model_name.contains("claude") { 200000 // Claude models on Databricks have large context windows } else if model_name.contains("llama") { 32768 // Llama models typically support 32k context } else if model_name.contains("dbrx") { 32768 // DBRX supports 32k context } else { 16384 // Conservative default for other Databricks models } } _ => config.agent.max_context_length as u32, }; info!( "Using context length: {} tokens for provider: {} (model: {})", context_length, provider_name, model_name ); Ok(context_length) } pub fn get_provider_info(&self) -> Result<(String, String)> { let provider = self.providers.get(None)?; Ok((provider.name().to_string(), provider.model().to_string())) } pub async fn execute_task( &mut self, description: &str, language: Option<&str>, _auto_execute: bool, ) -> Result { self.execute_task_with_options(description, language, false, false, false) .await } pub async fn execute_task_with_options( &mut self, description: &str, language: Option<&str>, _auto_execute: bool, show_prompt: bool, show_code: bool, ) -> Result { self.execute_task_with_timing( description, language, _auto_execute, show_prompt, show_code, false, ) .await } pub async fn execute_task_with_timing( &mut self, description: &str, language: Option<&str>, _auto_execute: bool, show_prompt: bool, show_code: bool, show_timing: bool, ) -> Result { // Create a cancellation token that never cancels for backward compatibility let cancellation_token = CancellationToken::new(); self.execute_task_with_timing_cancellable( description, language, _auto_execute, show_prompt, show_code, show_timing, cancellation_token, ) .await } pub async fn execute_task_with_timing_cancellable( &mut self, description: &str, _language: Option<&str>, _auto_execute: bool, show_prompt: bool, show_code: bool, show_timing: bool, cancellation_token: CancellationToken, ) -> Result { // Execute the task directly without splitting self.execute_single_task( description, show_prompt, show_code, show_timing, cancellation_token, ) .await } async fn execute_single_task( &mut self, description: &str, show_prompt: bool, _show_code: bool, show_timing: bool, cancellation_token: CancellationToken, ) -> Result { // Generate session ID based on the initial prompt if this is a new session if self.session_id.is_none() { self.session_id = Some(self.generate_session_id(description)); } // Only add system message if this is the first interaction (empty conversation history) if self.context_window.conversation_history.is_empty() { let provider = self.providers.get(None)?; let system_prompt = if provider.has_native_tool_calling() { // For native tool calling providers, use a more explicit system prompt "You are G3, an AI programming agent. Your goal is to analyze, write and modify code to achieve given goals. You have access to tools. When you need to accomplish a task, you MUST use the appropriate tool. Do not just describe what you would do - actually use the tools. Always start by reading the project's README. Create one if this is a new project or making major changes. IMPORTANT: You must call tools to achieve goals. When you receive a request: 1. Analyze and identify what needs to be done 2. Call the appropriate tool with the required parameters 3. Wait for the tool result 4. Continue or complete the task based on the result 5. If you repeatedly try something and it fails, try a different approach 6. Call the final_output task with a detailed summary when done with all tasks. For shell commands: Use the shell tool with the exact command needed. Avoid commands that produce a large amount of output, and consider piping those outputs to files. Example: If asked to list files, immediately call the shell tool with command parameter \"ls\". IMPORTANT: If the user asks you to just respond with text (like \"just say hello\" or \"tell me about X\"), do NOT use tools. Simply respond with the requested text directly. Only use tools when you need to execute commands or complete tasks that require action. Do not explain what you're going to do - just do it by calling the tools. # Response Guidelines - Use Markdown formatting for all responses except tool calls. - Whenever taking actions, use the pronoun 'I' ".to_string() } else { // For non-native providers (embedded models), use JSON format instructions "You are G3, a general-purpose AI agent. Your goal is to analyze and solve problems by writing code. # Tool Call Format When you need to execute a tool, write ONLY the JSON tool call on a new line: {\"tool\": \"tool_name\", \"args\": {\"param\": \"value\"}} The tool will execute immediately and you'll receive the result (success or error) to continue with. # Available Tools - **shell**: Execute shell commands - Format: {\"tool\": \"shell\", \"args\": {\"command\": \"your_command_here\"}} - Example: {\"tool\": \"shell\", \"args\": {\"command\": \"ls ~/Downloads\"}} - **read_file**: Read the contents of a file - Format: {\"tool\": \"read_file\", \"args\": {\"file_path\": \"path/to/file\"}} - Example: {\"tool\": \"read_file\", \"args\": {\"file_path\": \"src/main.rs\"}} - **write_file**: Write content to a file (creates or overwrites) - Format: {\"tool\": \"write_file\", \"args\": {\"file_path\": \"path/to/file\", \"content\": \"file content\"}} - Example: {\"tool\": \"write_file\", \"args\": {\"file_path\": \"src/lib.rs\", \"content\": \"pub fn hello() {}\"}} - **str_replace**: Replace text in a file using a diff - Format: {\"tool\": \"str_replace\", \"args\": {\"file_path\": \"path/to/file\", \"diff\": \"--- old\\n-old text\\n+++ new\\n+new text\"}} - Example: {\"tool\": \"str_replace\", \"args\": {\"file_path\": \"src/main.rs\", \"diff\": \"--- old\\n-println!(\\\"old\\\");\\n+++ new\\n+println!(\\\"new\\\");\"}} - **final_output**: Signal task completion with a detailed summary of work done in markdown format - Format: {\"tool\": \"final_output\", \"args\": {\"summary\": \"what_was_accomplished\"}} # Instructions 1. Analyze the request and break down into smaller tasks if appropriate 2. Execute ONE tool at a time 3. STOP when the original request was satisfied 4. Call the final_output tool when done # Response Guidelines - Use Markdown formatting for all responses except tool calls. - Whenever taking actions, use the pronoun 'I' ".to_string() }; if show_prompt { println!("šŸ” System Prompt:"); println!("================"); println!("{}", system_prompt); println!("================"); println!(); } // Add system message to context window let system_message = Message { role: MessageRole::System, content: system_prompt, }; self.context_window.add_message(system_message); } // Add user message to context window let user_message = Message { role: MessageRole::User, content: format!("Task: {}", description), }; self.context_window.add_message(user_message); // Use the complete conversation history for the request let messages = self.context_window.conversation_history.clone(); // Check if provider supports native tool calling and add tools if so let provider = self.providers.get(None)?; let tools = if provider.has_native_tool_calling() { Some(Self::create_tool_definitions()) } else { None }; // Get max_tokens from provider configuration // For Databricks, this should be much higher to support large file generation let max_tokens = match provider.name() { "databricks" => { // Use the model's maximum limit for Databricks to allow large file generation Some(32000) } _ => { // Default for other providers Some(16000) } }; let request = CompletionRequest { messages, max_tokens, temperature: Some(0.1), stream: true, // Enable streaming tools, }; // Time the LLM call with cancellation support and streaming let llm_start = Instant::now(); let result = tokio::select! { result = self.stream_completion(request) => result, _ = cancellation_token.cancelled() => { // Save context window on cancellation self.save_context_window("cancelled"); Err(anyhow::anyhow!("Operation cancelled by user")) } }; let (response_content, think_time) = match result { Ok(content) => content, Err(e) => { // Save context window on error self.save_context_window("error"); return Err(e); } }; let llm_duration = llm_start.elapsed(); // Create a mock usage for now (we'll need to track this during streaming) let mock_usage = g3_providers::Usage { prompt_tokens: 100, // Estimate completion_tokens: response_content.len() as u32 / 4, // Rough estimate total_tokens: 100 + (response_content.len() as u32 / 4), }; // Update context window with estimated token usage self.context_window.update_usage(&mock_usage); // Add assistant response to context window let assistant_message = Message { role: MessageRole::Assistant, content: response_content.clone(), }; self.context_window.add_message(assistant_message); // Save context window at the end of successful interaction self.save_context_window("completed"); // With streaming tool execution, we don't need separate code execution // The tools are already executed during streaming if show_timing { let timing_summary = format!( "\nā±ļø {} | šŸ’­ {}", Self::format_duration(llm_duration), Self::format_duration(think_time) ); Ok(format!("{}\n{}", response_content, timing_summary)) } else { Ok(response_content) } } /// Generate a session ID based on the initial prompt fn generate_session_id(&self, description: &str) -> String { use std::collections::hash_map::DefaultHasher; use std::hash::{Hash, Hasher}; // Clean and truncate the description for a readable filename let clean_description = description .chars() .filter(|c| c.is_alphanumeric() || c.is_whitespace() || *c == '-' || *c == '_') .collect::() .split_whitespace() .take(5) // Take first 5 words .collect::>() .join("_") .to_lowercase(); // Create a hash for uniqueness let mut hasher = DefaultHasher::new(); description.hash(&mut hasher); let hash = hasher.finish(); // Format: clean_description_hash format!("{}_{:x}", clean_description, hash) } /// Save the entire context window to a per-session file fn save_context_window(&self, status: &str) { let timestamp = std::time::SystemTime::now() .duration_since(std::time::UNIX_EPOCH) .unwrap_or_default() .as_secs(); // Use session-based filename if we have a session ID, otherwise fall back to timestamp let filename = if let Some(ref session_id) = self.session_id { format!("g3_session_{}.json", session_id) } else { format!("g3_context_{}.json", timestamp) }; let context_data = serde_json::json!({ "session_id": self.session_id, "timestamp": timestamp, "status": status, "context_window": { "used_tokens": self.context_window.used_tokens, "total_tokens": self.context_window.total_tokens, "percentage_used": self.context_window.percentage_used(), "conversation_history": self.context_window.conversation_history } }); match serde_json::to_string_pretty(&context_data) { Ok(json_content) => { if let Err(e) = std::fs::write(&filename, json_content) { error!("Failed to save context window to {}: {}", filename, e); } } Err(e) => { error!("Failed to serialize context window: {}", e); } } } pub fn get_context_window(&self) -> &ContextWindow { &self.context_window } pub fn get_tool_call_metrics(&self) -> &Vec<(String, Duration, bool)> { &self.tool_call_metrics } async fn stream_completion( &mut self, request: CompletionRequest, ) -> Result<(String, Duration)> { self.stream_completion_with_tools(request).await } /// Create tool definitions for native tool calling providers fn create_tool_definitions() -> Vec { vec![ Tool { name: "shell".to_string(), description: "Execute shell commands".to_string(), input_schema: json!({ "type": "object", "properties": { "command": { "type": "string", "description": "The shell command to execute" } }, "required": ["command"] }), }, Tool { name: "read_file".to_string(), description: "Read the contents of a file".to_string(), input_schema: json!({ "type": "object", "properties": { "file_path": { "type": "string", "description": "The path to the file to read" } }, "required": ["file_path"] }), }, Tool { name: "write_file".to_string(), description: "Write content to a file (creates or overwrites). You MUST provide all arguments".to_string(), input_schema: json!({ "type": "object", "properties": { "file_path": { "type": "string", "description": "The path to the file to write" }, "content": { "type": "string", "description": "The content to write to the file" } }, "required": ["file_path", "content"] }), }, Tool { name: "edit_file".to_string(), description: "Edit a specific range of lines in a file. Replaces lines from start_of_range to end_of_range (inclusive, 1-indexed) with new content.".to_string(), input_schema: json!({ "type": "object", "properties": { "content": { "type": "string", "description": "The content to write to the file" } }, "required": ["file_path", "content"] }), }, // Commented out edit_file tool to prevent g3 from using it // Tool { // name: "edit_file".to_string(), // description: "Edit a specific range of lines in a file. Replaces lines from start_of_range to end_of_range (inclusive, 1-indexed) with new content.".to_string(), // input_schema: json!({ // "type": "object", // "properties": { // "file_path": {"type": "string", "description": "The path to the file to edit"}, // "content": {"type": "string", "description": "The new content to replace the specified range"}, // "start_of_range": {"type": "integer", "description": "The starting line number (1-indexed, inclusive)"}, // "end_of_range": {"type": "integer", "description": "The ending line number (1-indexed, inclusive)"} // }, // "required": ["file_path", "content", "start_of_range", "end_of_range"] // }), // }, Tool { name: "str_replace".to_string(), description: "Apply a unified diff to a file. Supports multiple hunks and context lines. Optionally constrain the search to a [start, end) character range (0-indexed; end is EXCLUSIVE). Useful to disambiguate matches or limit scope in large files.".to_string(), input_schema: json!({ "type": "object", "properties": { "file_path": { "type": "string", "description": "The path to the file to edit" }, "diff": { "type": "string", "description": "A unified diff showing what to replace. Supports @@ hunk headers, context lines, and multiple hunks (---/+++ headers optional for minimal diffs)." }, "start": { "type": "integer", "description": "Starting character position in the file (0-indexed, inclusive). If omitted, searches from beginning." }, "end": { "type": "integer", "description": "Ending character position in the file (0-indexed, EXCLUSIVE - character at this position is NOT included). If omitted, searches to end of file." } }, "required": ["file_path", "diff"] }), }, Tool { name: "final_output".to_string(), description: "Signal task completion with a detailed summary".to_string(), input_schema: json!({ "type": "object", "properties": { "summary": { "type": "string", "description": "A detailed summary in markdown of what was accomplished" } }, "required": ["summary"] }), }, ] } async fn stream_completion_with_tools( &mut self, mut request: CompletionRequest, ) -> Result<(String, Duration)> { use std::io::{self, Write}; use tokio_stream::StreamExt; debug!("Starting stream_completion_with_tools"); let mut full_response = String::new(); let mut first_token_time: Option = None; let stream_start = Instant::now(); let mut total_execution_time = Duration::new(0, 0); let mut iteration_count = 0; const MAX_ITERATIONS: usize = 400; // Prevent infinite loops let mut response_started = false; // Check if we need to summarize before starting if self.context_window.should_summarize() { info!( "Context window at {}% ({}/{} tokens), triggering auto-summarization", self.context_window.percentage_used() as u32, self.context_window.used_tokens, self.context_window.total_tokens ); // Notify user about summarization println!( "\nšŸ“Š Context window reaching capacity ({}%). Creating summary...", self.context_window.percentage_used() as u32 ); // Create summary request with FULL history let summary_prompt = self.context_window.create_summary_prompt(); // Get the full conversation history let conversation_text = self .context_window .conversation_history .iter() .map(|m| format!("{:?}: {}", m.role, m.content)) .collect::>() .join("\n\n"); let summary_messages = vec![ Message { role: MessageRole::System, content: "You are a helpful assistant that creates concise summaries." .to_string(), }, Message { role: MessageRole::User, content: format!( "Based on this conversation history, {}\n\nConversation:\n{}", summary_prompt, conversation_text ), }, ]; let provider = self.providers.get(None)?; // Dynamically calculate max_tokens for summary based on what's left // We need to ensure: used_tokens + max_tokens <= total_context_limit let summary_max_tokens = match provider.name() { "databricks" | "anthropic" => { // Claude models have 200k context // Calculate how much room we have left let model_limit = 200_000u32; let current_usage = self.context_window.used_tokens; // Leave some buffer (5k tokens) for safety let available = model_limit .saturating_sub(current_usage) .saturating_sub(5000); // Cap at a reasonable summary size (10k tokens max) Some(available.min(10_000)) } "embedded" => { // For smaller context models, be more conservative let model_limit = self.context_window.total_tokens; let current_usage = self.context_window.used_tokens; // Leave 1k buffer let available = model_limit .saturating_sub(current_usage) .saturating_sub(1000); // Cap at 3k for embedded models Some(available.min(3000)) } _ => { // Default: conservative approach let available = self.context_window.remaining_tokens().saturating_sub(2000); Some(available.min(5000)) } }; info!( "Requesting summary with max_tokens: {:?} (current usage: {} tokens)", summary_max_tokens, self.context_window.used_tokens ); let summary_request = CompletionRequest { messages: summary_messages, max_tokens: summary_max_tokens, temperature: Some(0.3), // Lower temperature for factual summary stream: false, tools: None, }; // Get the summary match provider.complete(summary_request).await { Ok(summary_response) => { println!("āœ… Summary created successfully. Resetting context window...\n"); // Extract the latest user message from the request let latest_user_msg = request .messages .iter() .rev() .find(|m| matches!(m.role, MessageRole::User)) .map(|m| m.content.clone()); // Reset context with summary self.context_window .reset_with_summary(summary_response.content, latest_user_msg); // Update the request with new context request.messages = self.context_window.conversation_history.clone(); println!("šŸ”„ Context reset complete. Continuing with your request...\n"); } Err(e) => { error!("Failed to create summary: {}", e); println!("āš ļø Unable to create summary. Consider starting a new session if you continue to see errors.\n"); // Don't continue with the original request if summarization failed // as we're likely at token limit return Err(anyhow::anyhow!("Context window at capacity and summarization failed. Please start a new session.")); } } } loop { iteration_count += 1; debug!("Starting iteration {}", iteration_count); if iteration_count > MAX_ITERATIONS { warn!("Maximum iterations reached, stopping stream"); break; } // Add a small delay between iterations to prevent "model busy" errors if iteration_count > 1 { tokio::time::sleep(tokio::time::Duration::from_millis(100)).await; } let provider = self.providers.get(None)?; debug!("Got provider: {}", provider.name()); let mut stream = match provider.stream(request.clone()).await { Ok(s) => s, Err(e) => { if iteration_count > 1 && e.to_string().contains("busy") { warn!( "Model busy on iteration {}, retrying in 500ms", iteration_count ); tokio::time::sleep(tokio::time::Duration::from_millis(500)).await; match provider.stream(request.clone()).await { Ok(s) => s, Err(e2) => { error!("Failed to start stream after retry: {}", e2); return Err(e2); } } } else { return Err(e); } } }; let mut parser = StreamingToolParser::new(); let mut current_response = String::new(); let mut tool_executed = false; while let Some(chunk_result) = stream.next().await { match chunk_result { Ok(chunk) => { // Record time to first token if first_token_time.is_none() && !chunk.content.is_empty() { first_token_time = Some(stream_start.elapsed()); } // Process chunk with the new parser let completed_tools = parser.process_chunk(&chunk); // Handle completed tool calls for tool_call in completed_tools { debug!("Processing completed tool call: {:?}", tool_call); // Get the text content accumulated so far let text_content = parser.get_text_content(); // Clean and prepare display content let clean_display_content = text_content .replace("<|im_end|>", "") .replace("", "") .replace("[/INST]", "") .replace("<>", ""); let final_display_content = clean_display_content.trim(); // Display any new content before tool execution let new_content = if current_response.len() <= final_display_content.len() { let chars_already_shown = current_response.chars().count(); final_display_content .chars() .skip(chars_already_shown) .collect::() } else { String::new() }; if !new_content.trim().is_empty() { if !response_started { print!("\ršŸ¤– "); response_started = true; } print!("{}", new_content); io::stdout().flush()?; } // Execute the tool with formatted output println!(); // New line before tool execution // Tool call header println!("ā”Œā”€ {}", tool_call.tool); if let Some(args_obj) = tool_call.args.as_object() { for (key, value) in args_obj { let value_str = match value { serde_json::Value::String(s) => { if tool_call.tool == "shell" && key == "command" { if let Some(first_line) = s.lines().next() { if s.lines().count() > 1 { format!("{}...", first_line) } else { first_line.to_string() } } else { s.clone() } } else { if s.len() > 100 { format!("{}...", &s[..100]) } else { s.clone() } } } _ => value.to_string(), }; println!("│ {}: {}", key, value_str); } } println!("ā”œā”€ output:"); let exec_start = Instant::now(); let tool_result = self.execute_tool(&tool_call).await?; let exec_duration = exec_start.elapsed(); total_execution_time += exec_duration; // Track tool call metrics let tool_success = !tool_result.contains("āŒ"); self.tool_call_metrics.push(( tool_call.tool.clone(), exec_duration, tool_success, )); // Display tool execution result with proper indentation let output_lines: Vec<&str> = tool_result.lines().collect(); const MAX_LINES: usize = 5; if output_lines.len() <= MAX_LINES { for line in output_lines { println!("│ {}", line); } } else { for line in output_lines.iter().take(MAX_LINES) { println!("│ {}", line); } let hidden_count = output_lines.len() - MAX_LINES; println!( "│ ... ({} more line{} hidden)", hidden_count, if hidden_count == 1 { "" } else { "s" } ); } // Check if this was a final_output tool call if tool_call.tool == "final_output" { full_response.push_str(final_display_content); if let Some(summary) = tool_call.args.get("summary") { if let Some(summary_str) = summary.as_str() { full_response.push_str(&format!("\n\n=> {}", summary_str)); } } println!(); let ttft = first_token_time.unwrap_or_else(|| stream_start.elapsed()); return Ok((full_response, ttft)); } // Closure marker with timing println!("└─ āš”ļø {}", Self::format_duration(exec_duration)); println!(); print!("šŸ¤– "); io::stdout().flush()?; // Add the tool call and result to the context window // Only include the text content if it's not already in full_response let tool_message = if !full_response.contains(final_display_content) { Message { role: MessageRole::Assistant, content: format!( "{}\n\n{{\"tool\": \"{}\", \"args\": {}}}", final_display_content.trim(), tool_call.tool, tool_call.args ), } } else { // If we've already added the text, just include the tool call Message { role: MessageRole::Assistant, content: format!( "{{\"tool\": \"{}\", \"args\": {}}}", tool_call.tool, tool_call.args ), } }; let result_message = Message { role: MessageRole::User, content: format!("Tool result: {}", tool_result), }; self.context_window.add_message(tool_message); self.context_window.add_message(result_message); // Update the request with the new context for next iteration request.messages = self.context_window.conversation_history.clone(); // Ensure tools are included for native providers in subsequent iterations if provider.has_native_tool_calling() { request.tools = Some(Self::create_tool_definitions()); } // Only add to full_response if we haven't already added it if !full_response.contains(final_display_content) { full_response.push_str(final_display_content); } tool_executed = true; // Reset parser for next iteration parser.reset(); break; // Break out of current stream to start a new one } // If no tool calls were completed, continue streaming normally if !tool_executed { let clean_content = chunk .content .replace("<|im_end|>", "") .replace("", "") .replace("[/INST]", "") .replace("<>", ""); if !clean_content.is_empty() { let filtered_content = filter_json_tool_calls(&clean_content); if !filtered_content.is_empty() { if !response_started { print!("\ršŸ¤– "); response_started = true; } print!("{}", filtered_content); let _ = io::stdout().flush(); current_response.push_str(&filtered_content); } } } if chunk.finished { // Stream finished - check if we should continue or return if !tool_executed { // No tools were executed in this iteration, we're done full_response.push_str(¤t_response); println!(); let ttft = first_token_time.unwrap_or_else(|| stream_start.elapsed()); return Ok((full_response, ttft)); } break; // Tool was executed, break to continue outer loop } } Err(e) => { error!("Streaming error: {}", e); if tool_executed { warn!("Stream error after tool execution, attempting to continue"); break; // Break to outer loop to start new stream } else { return Err(e); } } } } // If we get here and no tool was executed, we're done if !tool_executed { full_response.push_str(¤t_response); println!(); let ttft = first_token_time.unwrap_or_else(|| stream_start.elapsed()); return Ok((full_response, ttft)); } // Continue the loop to start a new stream with updated context } // If we exit the loop due to max iterations let ttft = first_token_time.unwrap_or_else(|| stream_start.elapsed()); Ok((full_response, ttft)) } async fn execute_tool(&self, tool_call: &ToolCall) -> Result { debug!("=== EXECUTING TOOL ==="); debug!("Tool name: {}", tool_call.tool); debug!("Tool args (raw): {:?}", tool_call.args); debug!( "Tool args (JSON): {}", serde_json::to_string(&tool_call.args) .unwrap_or_else(|_| "failed to serialize".to_string()) ); debug!("======================"); match tool_call.tool.as_str() { "shell" => { debug!("Processing shell tool call"); if let Some(command) = tool_call.args.get("command") { debug!("Found command parameter: {:?}", command); if let Some(command_str) = command.as_str() { debug!("Command string: {}", command_str); // Use shell escaping to handle filenames with spaces and special characters let escaped_command = shell_escape_command(command_str); let executor = CodeExecutor::new(); match executor.execute_code("bash", &escaped_command).await { Ok(result) => { if result.success { Ok(if result.stdout.is_empty() { "āœ… Command executed successfully".to_string() } else { result.stdout.trim().to_string() }) } else { Ok(format!("āŒ Command failed: {}", result.stderr.trim())) } } Err(e) => Ok(format!("āŒ Execution error: {}", e)), } } else { debug!("Command parameter is not a string: {:?}", command); Ok("āŒ Invalid command argument".to_string()) } } else { debug!("No command parameter found in args: {:?}", tool_call.args); debug!( "Available keys: {:?}", tool_call .args .as_object() .map(|obj| obj.keys().collect::>()) ); Ok("āŒ Missing command argument".to_string()) } } "read_file" => { debug!("Processing read_file tool call"); if let Some(file_path) = tool_call.args.get("file_path") { if let Some(path_str) = file_path.as_str() { debug!("Reading file: {}", path_str); match std::fs::read_to_string(path_str) { Ok(content) => { let line_count = content.lines().count(); Ok(format!( "šŸ“„ File content ({} lines):\n{}", line_count, content )) } Err(e) => Ok(format!("āŒ Failed to read file '{}': {}", path_str, e)), } } else { Ok("āŒ Invalid file_path argument".to_string()) } } else { Ok("āŒ Missing file_path argument".to_string()) } } "write_file" => { debug!("Processing write_file tool call"); debug!("Raw tool_call.args: {:?}", tool_call.args); debug!( "Args as JSON: {}", serde_json::to_string(&tool_call.args) .unwrap_or_else(|_| "failed to serialize".to_string()) ); debug!( "Args type: {:?}", std::any::type_name_of_val(&tool_call.args) ); debug!("Args is_object: {}", tool_call.args.is_object()); debug!("Args is_array: {}", tool_call.args.is_array()); debug!("Args is_null: {}", tool_call.args.is_null()); // Try multiple argument formats that different providers might use let (path_str, content_str) = if let Some(args_obj) = tool_call.args.as_object() { debug!( "Args object keys: {:?}", args_obj.keys().collect::>() ); // Format 1: Standard format with file_path and content if let (Some(path_val), Some(content_val)) = (args_obj.get("file_path"), args_obj.get("content")) { debug!("Found file_path and content keys"); if let (Some(path), Some(content)) = (path_val.as_str(), content_val.as_str()) { debug!( "Successfully extracted file_path='{}', content_len={}", path, content.len() ); (Some(path), Some(content)) } else { debug!("file_path or content values are not strings: path_val={:?}, content_val={:?}", path_val, content_val); (None, None) } } // Format 2: Anthropic-style with path and content else if let (Some(path_val), Some(content_val)) = (args_obj.get("path"), args_obj.get("content")) { debug!("Found path and content keys (Anthropic style)"); if let (Some(path), Some(content)) = (path_val.as_str(), content_val.as_str()) { debug!( "Successfully extracted path='{}', content_len={}", path, content.len() ); (Some(path), Some(content)) } else { debug!("path or content values are not strings: path_val={:?}, content_val={:?}", path_val, content_val); (None, None) } } // Format 3: Alternative naming with filename and text else if let (Some(path_val), Some(content_val)) = (args_obj.get("filename"), args_obj.get("text")) { debug!("Found filename and text keys"); if let (Some(path), Some(content)) = (path_val.as_str(), content_val.as_str()) { debug!( "Successfully extracted filename='{}', text_len={}", path, content.len() ); (Some(path), Some(content)) } else { debug!("filename or text values are not strings: path_val={:?}, content_val={:?}", path_val, content_val); (None, None) } } // Format 4: Alternative naming with file and data else if let (Some(path_val), Some(content_val)) = (args_obj.get("file"), args_obj.get("data")) { debug!("Found file and data keys"); if let (Some(path), Some(content)) = (path_val.as_str(), content_val.as_str()) { debug!( "Successfully extracted file='{}', data_len={}", path, content.len() ); (Some(path), Some(content)) } else { debug!("file or data values are not strings: path_val={:?}, content_val={:?}", path_val, content_val); (None, None) } } else { debug!( "No matching key patterns found. Available argument keys: {:?}", args_obj.keys().collect::>() ); (None, None) } } else { debug!("Args is not an object, checking if it's an array"); // Format 5: Args might be an array [path, content] if let Some(args_array) = tool_call.args.as_array() { debug!("Args is an array with {} elements", args_array.len()); if args_array.len() >= 2 { if let (Some(path), Some(content)) = (args_array[0].as_str(), args_array[1].as_str()) { debug!( "Successfully extracted from array: path='{}', content_len={}", path, content.len() ); (Some(path), Some(content)) } else { debug!( "Array elements are not strings: [0]={:?}, [1]={:?}", args_array[0], args_array[1] ); (None, None) } } else { debug!("Array has insufficient elements: {}", args_array.len()); (None, None) } } else { debug!("Args is neither object nor array"); (None, None) } }; debug!( "Final extracted values: path_str={:?}, content_str_len={:?}", path_str, content_str.map(|c| c.len()) ); if let (Some(path), Some(content)) = (path_str, content_str) { debug!("Writing to file: {}", path); // Create parent directories if they don't exist if let Some(parent) = std::path::Path::new(path).parent() { if let Err(e) = std::fs::create_dir_all(parent) { return Ok(format!( "āŒ Failed to create parent directories for '{}': {}", path, e )); } } match std::fs::write(path, content) { Ok(()) => { let line_count = content.lines().count(); let char_count = content.len(); Ok(format!( "āœ… Successfully wrote {} lines ({} characters) to '{}'", line_count, char_count, path )) } Err(e) => Ok(format!("āŒ Failed to write to file '{}': {}", path, e)), } } else { // Provide more detailed error information let available_keys = if let Some(obj) = tool_call.args.as_object() { obj.keys().collect::>() } else { vec![] }; Ok(format!( "āŒ Missing file_path or content argument. Available keys: {:?}. Expected formats: {{\"file_path\": \"...\", \"content\": \"...\"}}, {{\"path\": \"...\", \"content\": \"...\"}}, {{\"filename\": \"...\", \"text\": \"...\"}}, or {{\"file\": \"...\", \"data\": \"...\"}}", available_keys )) } } "edit_file" => { debug!("Processing edit_file tool call"); // Extract arguments with better error handling let args_obj = match tool_call.args.as_object() { Some(obj) => obj, None => return Ok("āŒ Invalid arguments: expected object".to_string()), }; let file_path = match args_obj.get("file_path").and_then(|v| v.as_str()) { Some(path) => path, None => return Ok("āŒ Missing or invalid file_path argument".to_string()), }; let content = match args_obj.get("content").and_then(|v| v.as_str()) { Some(c) => c, None => return Ok("āŒ Missing or invalid content argument".to_string()), }; let start_line = match args_obj.get("start_of_range").and_then(|v| v.as_i64()) { Some(n) if n >= 1 => n as usize, Some(_) => { return Ok( "āŒ start_of_range must be >= 1 (lines are 1-indexed)".to_string() ) } None => return Ok("āŒ Missing or invalid start_of_range argument".to_string()), }; let end_line = match args_obj.get("end_of_range").and_then(|v| v.as_i64()) { Some(n) if n >= start_line as i64 => n as usize, Some(_) => return Ok("āŒ end_of_range must be >= start_of_range".to_string()), None => return Ok("āŒ Missing or invalid end_of_range argument".to_string()), }; debug!( "edit_file: path={}, start={}, end={}", file_path, start_line, end_line ); // Read the existing file let existing_content = match std::fs::read_to_string(file_path) { Ok(content) => content, Err(e) => return Ok(format!("āŒ Failed to read file '{}': {}", file_path, e)), }; // Split into lines, preserving empty lines let mut lines: Vec = existing_content.lines().map(|s| s.to_string()).collect(); let original_line_count = lines.len(); // Validate the range if start_line > lines.len() { // Allow appending at the end if start_line == lines.len() + 1 if start_line == lines.len() + 1 && end_line == start_line { // This is an append operation lines.extend(content.lines().map(|s| s.to_string())); // Write back to file let new_content = lines.join("\n"); match std::fs::write(file_path, &new_content) { Ok(()) => { let lines_added = content.lines().count(); return Ok(format!( "āœ… Successfully appended {} lines to '{}'. File now has {} lines (was {} lines)", lines_added, file_path, lines.len(), original_line_count )); } Err(e) => { return Ok(format!( "āŒ Failed to write to file '{}': {}", file_path, e )) } } } else { return Ok(format!( "āŒ start_of_range {} exceeds file length ({} lines)", start_line, lines.len() )); } } // Split the new content into lines let new_lines: Vec = content.lines().map(|s| s.to_string()).collect(); // Perform the replacement // Convert from 1-indexed (inclusive) to 0-indexed range for splice // splice takes start..end where end is EXCLUSIVE, so for inclusive end_line, we need end_line + 1 let start_idx = start_line - 1; let end_idx = (end_line + 1).min(lines.len() + 1); // +1 because splice end is exclusive let actual_end_line = end_line.min(lines.len()); // For reporting let lines_being_replaced = actual_end_line - start_line + 1; debug!( "Replacing lines {}..={} (0-indexed splice: {}..{})", start_line, end_line, start_idx, end_idx ); lines.splice(start_idx..end_idx, new_lines.clone()); // Write the result back to the file let new_content = lines.join("\n"); match std::fs::write(file_path, &new_content) { Ok(()) => { Ok(format!( "āœ… Successfully edited '{}': replaced {} lines ({}-{}) with {} lines. File now has {} lines (was {} lines)", file_path, lines_being_replaced, start_line, actual_end_line, new_lines.len(), lines.len(), original_line_count )) } Err(e) => Ok(format!("āŒ Failed to write to file '{}': {}", file_path, e)), } } "str_replace" => { debug!("Processing str_replace tool call"); // Extract arguments let args_obj = match tool_call.args.as_object() { Some(obj) => obj, None => return Ok("āŒ Invalid arguments: expected object".to_string()), }; let file_path = match args_obj.get("file_path").and_then(|v| v.as_str()) { Some(path) => path, None => return Ok("āŒ Missing or invalid file_path argument".to_string()), }; let diff = match args_obj.get("diff").and_then(|v| v.as_str()) { Some(d) => d, None => return Ok("āŒ Missing or invalid diff argument".to_string()), }; // Optional start and end character positions (0-indexed, end is EXCLUSIVE) let start_char = args_obj .get("start") .and_then(|v| v.as_u64()) .map(|n| n as usize); let end_char = args_obj .get("end") .and_then(|v| v.as_u64()) .map(|n| n as usize); debug!("str_replace: path={}, start={:?}, end={:?}", file_path, start_char, end_char); // Read the existing file let file_content = match std::fs::read_to_string(file_path) { Ok(content) => content, Err(e) => return Ok(format!("āŒ Failed to read file '{}': {}", file_path, e)), }; // Apply unified diff to content let result = match apply_unified_diff_to_string(&file_content, diff, start_char, end_char) { Ok(r) => r, Err(e) => return Ok(format!("āŒ {}", e)), }; // Write the result back to the file match std::fs::write(file_path, &result) { Ok(()) => { Ok(format!("āœ… Successfully applied unified diff to '{}'", file_path)) } Err(e) => Ok(format!("āŒ Failed to write to file '{}': {}", file_path, e)), } } "final_output" => { if let Some(summary) = tool_call.args.get("summary") { if let Some(summary_str) = summary.as_str() { Ok(format!("{}", summary_str)) } else { Ok("āœ… Task completed".to_string()) } } else { Ok("āœ… Task completed".to_string()) } } _ => { warn!("Unknown tool: {}", tool_call.tool); Ok(format!("ā“ Unknown tool: {}", tool_call.tool)) } } } fn format_duration(duration: Duration) -> String { let total_ms = duration.as_millis(); if total_ms < 1000 { format!("{}ms", total_ms) } else if total_ms < 60_000 { let seconds = duration.as_secs_f64(); format!("{:.1}s", seconds) } else { let minutes = total_ms / 60_000; let remaining_seconds = (total_ms % 60_000) as f64 / 1000.0; format!("{}m {:.1}s", minutes, remaining_seconds) } } } // Helper function to filter JSON tool calls from display content fn filter_json_tool_calls(content: &str) -> String { // Check if content contains any JSON tool call patterns let patterns = [ r#"{"tool":"#, r#"{ "tool":"#, r#"{"tool" :"#, r#"{ "tool" :"#, r#"{"tool": "#, // Added pattern with space after colon r#"{ "tool": "#, // Added pattern with spaces ]; // Check if any pattern is found in the content let has_tool_call_pattern = patterns.iter().any(|pattern| content.contains(pattern)); if has_tool_call_pattern { // If we detect a JSON tool call pattern anywhere in the content, // suppress it completely "".to_string() } else { // Check for partial JSON patterns that might be split across chunks let trimmed = content.trim(); // More comprehensive pattern matching for partial tool calls if trimmed.starts_with(r#"{"tool"#) || trimmed.starts_with(r#"{ "tool"#) || trimmed.starts_with(r#"{"#) && (trimmed.contains("tool") || trimmed.contains("args")) || trimmed.contains(r#""tool":"#) || trimmed.contains(r#""tool": "#) || trimmed.contains(r#""args":"#) || trimmed.contains(r#""args": "#) || trimmed.contains(r#"file_path"#) || trimmed.contains(r#"command"#) || trimmed.contains(r#"content"#) && trimmed.contains(r#"""#) // Likely JSON string || trimmed.contains(r#"summary"#) && trimmed.contains(r#"""#) // Likely JSON string || (trimmed.starts_with('{') && trimmed.len() < 100 // Increased threshold && (trimmed.contains("tool") || trimmed.contains("args") || trimmed.contains(r#"""#))) // Catch malformed tool calls like: {"tool": "write_file", "path || (trimmed.contains(r#""tool":"#) || trimmed.contains(r#""tool": "#)) || (trimmed.starts_with(r#"{"#) && trimmed.contains(r#"", ""#)) // JSON with quoted comma pattern { // This looks like part of a JSON tool call, suppress it "".to_string() } else { // Regular content, return as-is content.to_string() } } } // Apply unified diff to an input string with optional [start, end) bounds pub fn apply_unified_diff_to_string( file_content: &str, diff: &str, start_char: Option, end_char: Option, ) -> Result { // Parse full unified diff into hunks and apply sequentially. let hunks = parse_unified_diff_hunks(diff); if hunks.is_empty() { anyhow::bail!( "Invalid diff format. Expected unified diff with @@ hunks or +/- with context lines" ); } // Normalize line endings to avoid CRLF/CR mismatches let content_norm = file_content .replace("\r\n", "\n") .replace('\r', "\n"); // Determine and validate the search range let search_start = start_char.unwrap_or(0); let search_end = end_char.unwrap_or(content_norm.len()); if search_start > content_norm.len() { anyhow::bail!( "start position {} exceeds file length {}", search_start, content_norm.len() ); } if search_end > content_norm.len() { anyhow::bail!( "end position {} exceeds file length {}", search_end, content_norm.len() ); } if search_start > search_end { anyhow::bail!( "start position {} is greater than end position {}", search_start, search_end ); } // Extract the region we're going to modify (whole file if no bounds provided) let mut region_content = content_norm[search_start..search_end].to_string(); // Apply hunks in order for (idx, (old_block, new_block)) in hunks.iter().enumerate() { debug!( "Applying hunk {}: old_len={}, new_len={}", idx + 1, old_block.len(), new_block.len() ); if let Some(pos) = region_content.find(old_block) { let endpos = pos + old_block.len(); region_content.replace_range(pos..endpos, new_block); } else { // Not found; provide helpful diagnostics with a short preview let preview_len = old_block.len().min(200); let mut old_preview = old_block[..preview_len].to_string(); if old_block.len() > preview_len { old_preview.push_str("..."); } let range_note = if start_char.is_some() || end_char.is_some() { format!(" (within character range {}:{})", search_start, search_end) } else { String::new() }; anyhow::bail!( "Pattern not found in file{}\nHunk {} failed. Searched for:\n{}", range_note, idx + 1, old_preview ); } } // Reconstruct the full content with the modified region let mut result = String::with_capacity(content_norm.len() + region_content.len()); result.push_str(&content_norm[..search_start]); result.push_str(®ion_content); result.push_str(&content_norm[search_end..]); Ok(result) } // Parse a unified diff into a list of hunks as (old_block, new_block) // Each hunk contains the exact text to search for and the replacement text including context lines. fn parse_unified_diff_hunks(diff: &str) -> Vec<(String, String)> { let mut hunks: Vec<(String, String)> = Vec::new(); let mut old_lines: Vec = Vec::new(); let mut new_lines: Vec = Vec::new(); let mut in_hunk = false; for raw_line in diff.lines() { let line = raw_line; // Skip common diff headers if line.starts_with("diff ") || line.starts_with("index ") || line.starts_with("new file mode") || line.starts_with("deleted file mode") { continue; } if line.starts_with("--- ") || line.starts_with("+++ ") { // File header lines — ignore continue; } if line.starts_with("@@") { // Starting a new hunk — flush previous if present if in_hunk && (!old_lines.is_empty() || !new_lines.is_empty()) { hunks.push((old_lines.join("\n"), new_lines.join("\n"))); old_lines.clear(); new_lines.clear(); } in_hunk = true; continue; } if !in_hunk { // Some minimal diffs may omit @@; start collecting once we see diff markers if line.starts_with(' ') || (line.starts_with('-') && !line.starts_with("---")) || (line.starts_with('+') && !line.starts_with("+++")) { in_hunk = true; } else { continue; } } if line.starts_with(' ') { let content = &line[1..]; old_lines.push(content.to_string()); new_lines.push(content.to_string()); } else if line.starts_with('+') && !line.starts_with("+++") { new_lines.push(line[1..].to_string()); } else if line.starts_with('-') && !line.starts_with("---") { old_lines.push(line[1..].to_string()); } else if line.starts_with('\\') { // Example: "\\ No newline at end of file" — ignore continue; } else { // Unknown line type — ignore } } if in_hunk && (!old_lines.is_empty() || !new_lines.is_empty()) { hunks.push((old_lines.join("\n"), new_lines.join("\n"))); } hunks } // Helper function to properly escape shell commands fn shell_escape_command(command: &str) -> String { // Simple approach: if the command contains file paths with spaces, // we need to be more intelligent about escaping // For now, let's use a basic approach that handles common cases // This is a simplified version - a full implementation would use proper shell parsing let parts: Vec<&str> = command.split_whitespace().collect(); if parts.is_empty() { return command.to_string(); } let cmd = parts[0]; let _args = &parts[1..]; // Commands that typically take file paths as arguments let file_commands = [ "cat", "ls", "cp", "mv", "rm", "chmod", "chown", "file", "head", "tail", "wc", "grep", ]; if file_commands.contains(&cmd) { // For file commands, we need to be smarter about escaping // Let's use a different approach: use the original command but wrap it in quotes if needed // Check if the command already has proper quoting if command.contains('"') || command.contains('\'') { // Already has some quoting, use as-is return command.to_string(); } // Look for file paths that need escaping (contain spaces but aren't quoted) let mut escaped_command = String::new(); let mut in_quotes = false; let mut current_word = String::new(); let mut words = Vec::new(); for ch in command.chars() { match ch { ' ' if !in_quotes => { if !current_word.is_empty() { words.push(current_word.clone()); current_word.clear(); } } '"' => { in_quotes = !in_quotes; current_word.push(ch); } _ => { current_word.push(ch); } } } if !current_word.is_empty() { words.push(current_word); } // Reconstruct the command with proper escaping for (i, word) in words.iter().enumerate() { if i > 0 { escaped_command.push(' '); } // If this word looks like a file path (contains / or ~) and has spaces, quote it if word.contains('/') || word.starts_with('~') { if word.contains(' ') && !word.starts_with('"') && !word.starts_with('\'') { escaped_command.push_str(&format!("\"{}\"", word)); } else { escaped_command.push_str(word); } } else { escaped_command.push_str(word); } } escaped_command } else { // For non-file commands, use the original command command.to_string() } } // Helper function to fix mixed quotes in JSON strings #[allow(dead_code)] fn fix_nested_quotes_in_shell_command(json_str: &str) -> String { let mut _result = String::new(); let _chars = json_str.chars().peekable(); // Example: {"tool": "shell", "args": {"command": "python -c 'import os; print("hello")'"}} // Look for the pattern: "command": " if let Some(command_start) = json_str.find(r#""command": ""#) { let command_value_start = command_start + r#""command": ""#.len(); // Find the end of the command string by looking for the pattern "} // We need to be careful about nested quotes if let Some(end_marker) = json_str[command_value_start..].find(r#"" }"#) { let command_end = command_value_start + end_marker; let before = &json_str[..command_value_start]; let command_content = &json_str[command_value_start..command_end]; let after = &json_str[command_end..]; // Fix the command content by properly escaping quotes let mut fixed_command = String::new(); let mut chars = command_content.chars().peekable(); while let Some(ch) = chars.next() { match ch { '"' => { // Check if this quote is already escaped if fixed_command.ends_with('\\') { fixed_command.push(ch); // Already escaped, keep as-is } else { fixed_command.push_str(r#"\""#); // Escape the quote } } '\\' => { // Check what follows the backslash if let Some(&_next_ch) = chars.peek() { if _next_ch == '"' { // This is an escaped quote, keep the backslash fixed_command.push(ch); } else { // Regular backslash, escape it fixed_command.push_str(r#"\\"#); } } else { // Backslash at end, escape it fixed_command.push_str(r#"\\"#); } } _ => fixed_command.push(ch), } } return format!("{}{}{}", before, fixed_command, after); } } // Fallback: if we can't parse the structure, try some basic replacements json_str.to_string() } // Helper function to fix mixed quotes in JSON (single quotes where double quotes should be) #[allow(dead_code)] fn fix_mixed_quotes_in_json(json_str: &str) -> String { let mut result = String::new(); let mut chars = json_str.chars().peekable(); let mut in_string = false; let mut string_delimiter = '"'; while let Some(ch) = chars.next() { match ch { '"' if !in_string => { // Start of a double-quoted string in_string = true; string_delimiter = '"'; result.push(ch); } '\'' if !in_string => { // Start of a single-quoted string - convert to double quotes in_string = true; string_delimiter = '\''; result.push('"'); // Convert single quote to double quote } c if in_string && c == string_delimiter => { // End of current string if string_delimiter == '\'' { result.push('"'); // Convert single quote to double quote } else { result.push(c); } in_string = false; } '"' if in_string && string_delimiter == '\'' => { // Double quote inside single-quoted string - escape it result.push_str(r#"\""#); } '\\' if in_string => { // Escape sequence - preserve it result.push(ch); if let Some(&_next_ch) = chars.peek() { result.push(chars.next().unwrap()); } } _ => { result.push(ch); } } } result } pub mod providers { pub mod embedded; } #[cfg(test)] mod tests { use super::parse_unified_diff_hunks; #[test] fn parses_minimal_unified_diff_without_hunk_header() { let diff = "--- old\n-old text\n+++ new\n+new text\n"; let hunks = parse_unified_diff_hunks(diff); assert_eq!(hunks.len(), 1); assert_eq!(hunks[0].0, "old text"); assert_eq!(hunks[0].1, "new text"); } #[test] fn parses_diff_with_context_and_hunk_headers() { let diff = "@@ -1,3 +1,3 @@\n common\n-old\n+new\n common2\n"; let hunks = parse_unified_diff_hunks(diff); assert_eq!(hunks.len(), 1); assert_eq!(hunks[0].0, "common\nold\ncommon2"); assert_eq!(hunks[0].1, "common\nnew\ncommon2"); } } #[cfg(test)] mod integration_tests { use super::apply_unified_diff_to_string; #[test] fn apply_multi_hunk_unified_diff_to_string() { let original = "line 1\nkeep\nold A\nkeep 2\nold B\nkeep 3\n"; let diff = "@@ -1,6 +1,6 @@\n line 1\n keep\n-old A\n+new A\n keep 2\n-old B\n+new B\n keep 3\n"; let result = apply_unified_diff_to_string(original, diff, None, None).unwrap(); let expected = "line 1\nkeep\nnew A\nkeep 2\nnew B\nkeep 3\n"; assert_eq!(result, expected); } #[test] fn apply_diff_within_range_only() { let original = "A\nold\nB\nold\nC\n"; // Only the first 'old' should be replaced due to range let diff = "@@ -1,3 +1,3 @@\n A\n-old\n+NEW\n B\n"; let start = 0usize; // Start of file let end = original.find("B\n").unwrap() + 2; // up to end of line 'B\n' let result = apply_unified_diff_to_string(original, diff, Some(start), Some(end)).unwrap(); let expected = "A\nNEW\nB\nold\nC\n"; assert_eq!(result, expected); } }