Series M v1 model
All checks were successful
Build and Push Docker Image / test (push) Successful in 9s
Build and Push Docker Image / build_and_push (push) Successful in 22s

This commit is contained in:
Admin User 2025-04-10 18:33:30 +00:00
parent f2e9d599b9
commit e2c2560e0a
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,7 @@ logging.basicConfig(
) )
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
def __main__(application_id: str, tu_credit_report: str) -> dict: def __main__(application_id: str, tu_credit_report: dict) -> dict:
# Randomly pick an integer between 800 and 1400 # Randomly pick an integer between 800 and 1400
hd_score_m1 = random.randint(800, 1400) hd_score_m1 = random.randint(800, 1400)

View File

@ -7,8 +7,14 @@
"description": "Unique identifier for the application." "description": "Unique identifier for the application."
}, },
"tu_credit_report": { "tu_credit_report": {
"type": ["string", "null"], "type": ["object", "null"],
"description": "User Credit report" "description": "User Credit report",
"properties": {
"creditBureau": {
"type": "object",
"description": "Credit bureau details"
}
}
} }
}, },
"required": [] "required": []