forgot the newline that needs to be sent to the model

This commit is contained in:
Rickey Bowers Jr 2023-03-16 20:54:06 -06:00
parent 8470458b64
commit 07d2da0cb0

View file

@ -1013,7 +1013,7 @@ int main(int argc, char ** argv) {
else { else {
line.pop_back(); // Remove the continue character line.pop_back(); // Remove the continue character
} }
buffer += line; // Append the line to the result buffer += line + '\n'; // Append the line to the result
} while (another_line); } while (another_line);
if (params.use_color) printf(ANSI_COLOR_RESET); if (params.use_color) printf(ANSI_COLOR_RESET);