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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ debug.log
# Stakpak local files
.stakpak
.DS_Store
debug_acp.sh
PR_Description.md
3 changes: 2 additions & 1 deletion cli/src/commands/acp/fs_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ pub async fn execute_acp_fs_tool(
.map_err(|e| format!("Failed to parse tool arguments: {}", e))?;

use super::tool_names;
match tool_call.function.name.as_str() {
let stripped_name = super::utils::strip_tool_name(&tool_call.function.name);
match stripped_name {
tool_names::VIEW => {
let path = args
.get("path")
Expand Down
Loading