From f6b9ab1a5fef9477208e22cafaa15e75225eb8cd Mon Sep 17 00:00:00 2001 From: 1024andrew <1024andrew@naver.com> Date: Wed, 6 May 2026 01:27:06 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B9=85=EB=AC=B8=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/chat_service.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/app/services/chat_service.py b/app/services/chat_service.py index 690c296..6479e22 100644 --- a/app/services/chat_service.py +++ b/app/services/chat_service.py @@ -422,11 +422,6 @@ def _answer_unspecified_dormitory_chat( raise try: - - print("should each dorm:", _should_search_each_dormitory(question)) - print("question:", question) - - if _should_search_each_dormitory(question): chunks = _search_chunks_by_each_dormitory( db=db, @@ -443,17 +438,6 @@ def _answer_unspecified_dormitory_chat( dormitories=settings.chat_grouped_dormitories, top_k=settings.chat_grouped_dormitory_top_k, ) - - print("===== FINAL EACH DORMITORY CHUNKS =====") - print("chunks_count:", len(chunks)) - for index, chunk in enumerate(chunks, start=1): - print( - index, - chunk.get("document_id"), - chunk.get("source"), - (chunk.get("content") or "")[:200], - ) - print("======================================")