bug: removes raw api response from stdout (#1224)

This commit is contained in:
Abhi 2025-06-19 16:26:31 -04:00 committed by GitHub
parent b0bc7c3d99
commit 0125547215
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -362,10 +362,6 @@ export class GeminiClient {
});
const result = await retryWithBackoff(apiCall);
console.log(
'Raw API Response in client.ts:',
JSON.stringify(result, null, 2),
);
return result;
} catch (error: unknown) {
if (abortSignal.aborted) {