From 3bb45f16589cfe3649330f78114237f64c8f5080 Mon Sep 17 00:00:00 2001 From: Mug <> Date: Mon, 10 Apr 2023 16:38:45 +0200 Subject: [PATCH] More reasonable defaults --- examples/low_level_api/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/low_level_api/common.py b/examples/low_level_api/common.py index f16980c..58a5688 100644 --- a/examples/low_level_api/common.py +++ b/examples/low_level_api/common.py @@ -50,7 +50,7 @@ class GptParams: # If chat ended prematurely, append this to the conversation to fix it. # Set to "\nUser:" etc. # This is an alternative to input_prefix which always adds it, so it potentially duplicates "User:"" - fix_prefix: str = " " + fix_prefix: str = "" output_postfix: str = "" input_echo: bool = True,