From 428a07416a79c2f95887b8f78d7e2299df271006 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 5 Aug 2025 00:07:22 +0800 Subject: [PATCH] cleanup some debug --- gpttype_adapter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpttype_adapter.cpp b/gpttype_adapter.cpp index 5bb1e7a11..477d91e97 100644 --- a/gpttype_adapter.cpp +++ b/gpttype_adapter.cpp @@ -3832,8 +3832,8 @@ generation_outputs gpttype_generate(const generation_inputs inputs) std::string outstr = ""; // printf("\n[Debug: Dump Forwarded Input Tokens]\n"); // outstr += get_tok_vec_str(embd_inp); - outstr += "\n\n[Debug: n_past="+std::to_string(n_past)+" Context Size = " + std::to_string(current_context_tokens.size()) + "]\n"; - outstr += get_tok_vec_str(current_context_tokens); + outstr += "[Debug: n_past="+std::to_string(n_past)+" Context Size = " + std::to_string(current_context_tokens.size()) + "]"; + //outstr += get_tok_vec_str(current_context_tokens); printf("%s\n\n", RemoveBell(outstr).c_str()); }