From e590787ab3919eab6a2057f4d490566eb18900a8 Mon Sep 17 00:00:00 2001 From: rabidcopy Date: Wed, 22 Mar 2023 11:43:57 -0500 Subject: [PATCH] Update main.cpp --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index bd35270e0..df9d0f152 100644 --- a/main.cpp +++ b/main.cpp @@ -250,9 +250,9 @@ int main(int argc, char ** argv) { } // tokenize the first reverse prompt - auto first_antiprompt = ::llama_tokenize(ctx, params.prompt, true); + auto first_antiprompt = ::llama_tokenize(ctx, params.prompt,false); if (!params.antiprompt.empty()) { - auto first_antiprompt = ::llama_tokenize(ctx, params.antiprompt.front(), true); + auto first_antiprompt = ::llama_tokenize(ctx, params.antiprompt.front(), false); } // enable interactive mode if reverse prompt is specified