Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrammel committed Jan 31, 2025
1 parent b4d619e commit 4eeeea2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,6 @@ export class OpenAICompatibleChatLanguageModel implements LanguageModelV1 {
async doGenerate(
options: Parameters<LanguageModelV1['doGenerate']>[0],
): Promise<Awaited<ReturnType<LanguageModelV1['doGenerate']>>> {
console.log(
'doGenerate',
JSON.stringify(options.providerMetadata, null, 2),
);
const { args, warnings } = this.getArgs({ ...options });

const body = JSON.stringify(args);
Expand Down

0 comments on commit 4eeeea2

Please sign in to comment.