Skip to content

Commit

Permalink
chore: remove console messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kishanprmr committed Aug 9, 2024
1 parent 38dec63 commit a7d2402
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,6 @@ export const askClaude = createAction({
],
});

console.log('ROLES', JSON.stringify(roles, null, 2));

const maxRetries = 4;
let retries = 0;
let response: string | undefined;
Expand All @@ -157,7 +155,6 @@ export const askClaude = createAction({
messages: roles,
});

console.log('RESPONSE', JSON.stringify(req, null, 2));
response = req?.content[0].text?.trim();

break; // Break out of the loop if the request is successful
Expand Down

0 comments on commit a7d2402

Please sign in to comment.