[main] fix infinite generation (-n == -1) (#523)

pull/526/head master-7a87d31
anzz1 1 year ago committed by GitHub
parent 348d6926ee
commit 7a87d31f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -493,7 +493,7 @@ int main(int argc, char ** argv) {
}
// In interactive mode, respect the maximum number of tokens and drop back to user input when reached.
if (params.interactive && n_remain <= 0) {
if (params.interactive && n_remain <= 0 && params.n_predict != -1) {
n_remain = params.n_predict;
is_interacting = true;
}

Loading…
Cancel
Save