From 1cf9ca55f83613b787b40e63403598e652a22169 Mon Sep 17 00:00:00 2001 From: zhouchengrong Date: Thu, 28 Mar 2024 10:38:43 +0800 Subject: [PATCH] =?UTF-8?q?attribute=20=E5=AD=97=E6=AE=B5=E5=90=8D?= =?UTF-8?q?=E8=A7=84=E8=8C=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/api_attribute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/api_attribute.py b/app/api/api_attribute.py index 972ccd3..81f163b 100644 --- a/app/api/api_attribute.py +++ b/app/api/api_attribute.py @@ -14,6 +14,6 @@ router = APIRouter() @router.post("") def attribute(request_data: AttributeModel): service = AttributeRecognition() - response = service.attribute(const, request_data) + response = service.attribute(const_debug, request_data) logger.info("test") return {"code": 200, "message": "ok", "data": response}