From d61e7d150a53349940e9e0f639a8bbac2d70d9c0 Mon Sep 17 00:00:00 2001 From: Vivian Fang Date: Fri, 20 Oct 2023 14:28:10 -0700 Subject: [PATCH] make gpt 3-5 experimental warning more prominent --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index eaf93887..6551e17f 100644 --- a/main.py +++ b/main.py @@ -47,9 +47,9 @@ async def main(): if FLAGS.debug: logging.getLogger().setLevel(logging.DEBUG) print("Running... [exit by typing '/exit']") - + if FLAGS.model != constants.DEFAULT_MEMGPT_MODEL: - print(f"Warning - you are running MemGPT with {FLAGS.model}, which is not officially supported (yet). Expect bugs!") + interface.important_message(f"Warning - you are running MemGPT with {FLAGS.model}, which is not officially supported (yet). Expect bugs!") if FLAGS.archival_storage_faiss_path: index, archival_database = utils.prepare_archival_index(FLAGS.archival_storage_faiss_path)