Merge pull request #1978 from P3il4/fix-continue

Fix prompt cache after API error
This commit is contained in:
Cohee 2024-03-28 20:15:27 +02:00 committed by GitHub
commit b080f8af48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3973,6 +3973,8 @@ async function Generate(type, { automatic_trigger, force_name2, quiet_prompt, qu
toastr.error(exception.error.message, 'Error', { timeOut: 10000, extendedTimeOut: 20000 }); toastr.error(exception.error.message, 'Error', { timeOut: 10000, extendedTimeOut: 20000 });
} }
generatedPromptCache = '';
unblockGeneration(); unblockGeneration();
console.log(exception); console.log(exception);
streamingProcessor = null; streamingProcessor = null;