Skip to content

Commit

Permalink
bugfix: default should not be interactive (ggerganov#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
cocktailpeanut committed Mar 19, 2023
1 parent 4545539 commit da5303c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ int main(int argc, char ** argv) {
}

// enable interactive mode if reverse prompt is specified
if (!antipromptv_inp.size()) {
if (antipromptv_inp.size() != 0) {
params.interactive = true;
}

Expand Down

0 comments on commit da5303c

Please sign in to comment.