mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 23:29:44 +00:00
bugfix: default should not be interactive (#304)
This commit is contained in:
parent
4545539d71
commit
da5303c1ea
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue