From: cocktailpeanut Date: Sun, 19 Mar 2023 21:44:20 +0000 (-0400) Subject: bugfix: default should not be interactive (#304) X-Git-Tag: gguf-v0.4.0~1196 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=da5303c1ea68aa19db829c634f1e10d08d409680;p=pkg%2Fggml%2Fsources%2Fllama.cpp bugfix: default should not be interactive (#304) --- diff --git a/main.cpp b/main.cpp index c7186e0d..c005d17c 100644 --- a/main.cpp +++ b/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; }