From 01329195eef9c5bfd686d07fe40cdc492f789869 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 8 Apr 2026 07:11:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20query=5Fsubscribes.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/agent/tools/impl/query_subscribes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/agent/tools/impl/query_subscribes.py b/app/agent/tools/impl/query_subscribes.py index 9dd81fab..24637267 100644 --- a/app/agent/tools/impl/query_subscribes.py +++ b/app/agent/tools/impl/query_subscribes.py @@ -106,8 +106,8 @@ class QuerySubscribesTool(MoviePilotTool): ] result_json = json.dumps(full_subscribes, ensure_ascii=False, indent=2) # 如果结果被裁剪,添加提示信息 - if total_count > 50: - return f"注意:查询结果共找到 {total_count} 条,为节省上下文空间,仅显示前 50 条结果。\n\n{result_json}" + if total_count > 200: + return f"注意:查询结果共找到 {total_count} 条,为节省上下文空间,仅显示前 200 条结果。\n\n{result_json}" return result_json return "未找到相关订阅" except Exception as e: