From 8b75dfce8159065a72f66859e4506b127df9dbcc Mon Sep 17 00:00:00 2001 From: csunny Date: Thu, 1 Jun 2023 15:05:48 +0800 Subject: [PATCH] debug: add log --- pilot/out_parser/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pilot/out_parser/base.py b/pilot/out_parser/base.py index fee3eda37..03e424870 100644 --- a/pilot/out_parser/base.py +++ b/pilot/out_parser/base.py @@ -59,6 +59,7 @@ class BaseOutputParser(ABC): if "vicuna" in CFG.LLM_MODEL: output = data["text"].strip() + print(output) else: output = data["text"].strip()