Skip to content

Commit 4d1b641

Browse files
committed
update result
1 parent 754b3e0 commit 4d1b641

File tree

1 file changed

+5
-3
lines changed
  • backend/src/build-system/handlers/frontend-code-generate

1 file changed

+5
-3
lines changed

backend/src/build-system/handlers/frontend-code-generate/CodeReview.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class CodeTaskQueue {
6767
* 4. Repeats until build succeeds or max attempts are reached.
6868
*/
6969
export class CodeQueueProcessor {
70-
private logger = new Logger('FrontendQueueProcessor');
70+
private logger = new Logger('CodeQueueProcessor');
7171

7272
constructor(
7373
private validator: CodeValidator, // Path to your frontend project
@@ -196,7 +196,8 @@ export class CodeQueueProcessor {
196196
let fixResponse = await chatSyncWithClocker(
197197
this.context,
198198
{
199-
model: 'o3-mini-high',
199+
// model: 'o3-mini-high',
200+
model: 'gpt-4o-mini',
200201
messages: [
201202
{ role: 'system', content: fixPrompt },
202203
{
@@ -275,7 +276,8 @@ export class CodeQueueProcessor {
275276
fixResponse = await chatSyncWithClocker(
276277
this.context,
277278
{
278-
model: 'o3-mini-high',
279+
// model: 'o3-mini-high',
280+
model: 'gpt-4o-mini',
279281
messages: [
280282
{ role: 'system', content: fixPrompt },
281283
{

0 commit comments

Comments
 (0)