Skip to content

Commit

Permalink
Upgrade AI to gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
Godefroy committed Feb 10, 2025
1 parent 99c0546 commit daaaa72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/features/ai/generateMeetingSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default authedProcedure
const content = contents.join('\n\n')

const response = await openai.createChatCompletion({
model: 'gpt-3.5-turbo',
model: 'gpt-4o',
messages: [
{
role: 'system',
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/features/ai/generateRole.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default authedProcedure
}

const response = await openai.createChatCompletion({
model: 'gpt-3.5-turbo',
model: 'gpt-4o',
messages: [
{
role: 'system',
Expand Down

0 comments on commit daaaa72

Please sign in to comment.