From 2005f48b373068ea1ea07be189b3f4b9f4e1fecc Mon Sep 17 00:00:00 2001 From: zhangchen <1987834247@qq.com> Date: Tue, 31 Mar 2026 04:17:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89cursor=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/platforms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/platforms.py b/api/platforms.py index daa963d..0d34369 100644 --- a/api/platforms.py +++ b/api/platforms.py @@ -6,4 +6,5 @@ router = APIRouter(prefix="/platforms", tags=["platforms"]) @router.get("") def get_platforms(): - return list_platforms() + platforms = list_platforms() + return [p for p in platforms if p["name"] not in ("cursor", "tavily")]