File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
backend/src/build-system/handlers/frontend-code-generate Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export class CodeTaskQueue {
6767 * 4. Repeats until build succeeds or max attempts are reached.
6868 */
6969export 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 {
You can’t perform that action at this time.
0 commit comments