chore: Switch models to gpt-4o (#9458)

- Switch model to gpt-4o from gpt-4-turbo
This commit is contained in:
Sojan Jose
2024-05-13 13:32:11 -07:00
committed by GitHub
parent 9a8442fe0e
commit 07e33fd98a
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ class ChatGpt
end
def initialize(context_sections = '')
@model = 'gpt-4-0125-preview'
@model = 'gpt-4o'
@messages = [system_message(context_sections)]
end