From 2ca6d79b75b8b68a459e424904ebea3da6df4efc Mon Sep 17 00:00:00 2001 From: star-nox Date: Mon, 11 Sep 2023 15:57:17 -0500 Subject: [PATCH] added print statements in create_map() --- ai_ta_backend/nomic_logging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ai_ta_backend/nomic_logging.py b/ai_ta_backend/nomic_logging.py index 972ff6bf..07271e57 100644 --- a/ai_ta_backend/nomic_logging.py +++ b/ai_ta_backend/nomic_logging.py @@ -95,6 +95,7 @@ def log_convo_to_nomic(course_name: str, conversation) -> str: except Exception as e: # if project doesn't exist, create it + print(e) result = create_nomic_map(course_name, conversation) if result is None: print("Nomic map does not exist yet, probably because you have less than 20 queries on your project: ", e)