We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94c524 commit 1006d65Copy full SHA for 1006d65
src/adapters/anthropic/helpers/completions.ts
@@ -222,7 +222,8 @@ export class Completions extends SuperAnthropic {
222
const toolJson = toolBlock[1];
223
224
try {
225
- this.context.logger.info(`Processing tool request:` + toolJson);
+ console.log(toolJson);
226
+ this.context.logger.info(`Processing tool request: ${toolJson}`);
227
const toolRequest: ToolRequest = JSON.parse(toolJson);
228
229
// For writeFile, ensure content is stringified if it's an object
0 commit comments