Skip to content

Commit

Permalink
fix: remove redundant openai model fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Oct 2, 2024
1 parent 29fd595 commit 9db55fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/src/modules/puterai/OpenAICompletionService.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class OpenAICompletionService extends BaseService {
}

return await this.complete(messages, {
model: model ?? 'gpt-4o',
model: model,
moderation: true,
stream,
});
Expand Down

0 comments on commit 9db55fc

Please sign in to comment.