(ctx context.Context, args map[string]interface{})
| 989 | } |
| 990 | |
| 991 | func executePrepareInputFile(ctx context.Context, args map[string]interface{}) (*ToolResult, error) { |
| 992 | return executeWriteFileWithPathNormalizer(ctx, args, normalizeSandboxInputPath, "prepare_input_file") |
| 993 | } |
| 994 | |
| 995 | func executeWriteFileWithPathNormalizer(ctx context.Context, args map[string]interface{}, normalizePath func(string) (string, error), toolName string) (*ToolResult, error) { |
| 996 | path, ok := args["path"].(string) |
no test coverage detected