Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Mar 6, 2024
1 parent 423a852 commit 9039e3d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/cli/src/services/ai/openai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export class AIProviderOpenAI implements N8nAIProvider {
}

async prompt(prompt: string) {
console.log('prompt', prompt);
const data = await this.model.chat.completions.create({
messages: [{ role: 'user', content: prompt }],
model: 'gpt-3.5-turbo',
Expand Down

0 comments on commit 9039e3d

Please sign in to comment.