Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/backend/src/ai/ai.constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const GPT_MODEL = 'gpt-5.6-terra';
export const GPT_MODEL = 'gpt-5.5';
export const GPT_IMAGE_MODEL = 'dall-e-3';

export const MAX_AI_REQUESTS_PER_DAY = 5;
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/ai/ai.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@ export class AIService {
return this.openAi.responses
.create({
model: GPT_MODEL,
reasoning: { effort: 'medium' },
tools: [{ type: 'web_search_preview' }],
tool_choice: 'auto',
instructions: GENERAL_TEXT_INSTRUCTIONS,
Comment on lines 198 to 202
input: text,
user: `${userId}-DaBros2016`,
reasoning: { effort: 'medium' },
})
.then((x) => {
return extractAndParseOpenAiResponse(x);
Expand Down
Loading