This commit is contained in:
Sean Goedecke
2025-08-05 02:17:03 +00:00
parent de436346ec
commit 8c9e538880
2 changed files with 3 additions and 3 deletions
Generated Vendored
+2 -2
View File
@@ -48656,12 +48656,12 @@ async function simpleInference(request) {
return modelResponse || null; return modelResponse || null;
} }
else { else {
coreExports.error('Unexpected response format from OpenAI API'); coreExports.error(`Unexpected response format from API: ${JSON.stringify(response)}`);
return null; return null;
} }
} }
catch (error) { catch (error) {
coreExports.error(`OpenAI API error: ${error}`); coreExports.error(`API error: ${error}`);
throw error; throw error;
} }
} }
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long