1
0
Fork 0
mirror of https://gitlab.com/niansa/discord_llama.git synced 2025-03-06 20:48:25 +01:00

Partially reverted last commit

This commit is contained in:
niansa/tuxifan 2023-05-17 12:53:43 +02:00
parent 4d368b6214
commit 79183742f5

View file

@ -336,7 +336,7 @@ private:
if (channel_cfg.instruct_mode) {
co_return co_await inference->append((channel_cfg.model->no_extra_linebreaks?"":"\n")
+channel_cfg.model->bot_prompt
+(channel_cfg.model->no_extra_linebreaks?"":"\n\n"));
+(channel_cfg.model->no_extra_linebreaks?"\n":"\n\n"));
} else {
co_return co_await inference->append(bot.me.username+':', show_console_progress);
}