diff options
author | tjohnman <tjohnman@users.noreply.github.com> | 2023-03-23 01:30:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 01:30:23 +0100 |
commit | f7dc43bc0d759732815856183246f167111587ad (patch) | |
tree | 31b53dcce2699bc7f95d19e0df898a69a3a8a5b5 | |
parent | ee8a7887865a893be208e0a92d6d94d2cb66a789 (diff) |
Fix instruct mode broken by PR #354 (#409)
Co-authored-by: Johnman <tjohnman@github>
-rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -300,7 +300,7 @@ int main(int argc, char ** argv) { #endif " - Press Return to return control to LLaMa.\n" " - If you want to submit another line, end your input in '\\'.\n\n"); - is_interacting = params.interactive_start; + is_interacting = params.interactive_start || params.instruct; } int input_consumed = 0; |