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

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) {