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}