You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Don't fall back on user-initiated aborts - propagate immediately
52
+
if(isAbortError(error)){
53
+
throwerror
54
+
}
42
55
logger.error(
43
56
{
44
57
error:
@@ -49,7 +62,7 @@ export async function promptRelaceAI(
49
62
'Error calling Relace AI, falling back to o3-mini',
50
63
)
51
64
52
-
// Fall back to Gemini
65
+
// Fall back to o3-mini
53
66
constprompt=`You are an expert programmer. Please rewrite this code file to implement the edit snippet while preserving as much of the original code and behavior as possible.
54
67
55
68
Initial code:
@@ -70,12 +83,16 @@ Important:
70
83
71
84
Please output just the complete updated file content with no other text.`
0 commit comments