Compare commits

...

1 Commits
main ... v3

Author SHA1 Message Date
FunctionsAPI
b1a2fabe5a Automatic push from FunctionsAPI 2025-08-13 09:44:34 +00:00
3 changed files with 6 additions and 2 deletions

View File

@ -1,2 +1 @@
# 4d604ca369ef46ef8029fe8abf8907ce # python hello-world

3
main.py Normal file
View File

@ -0,0 +1,3 @@
def predict_performance(employee_data):
score = 0.4 * employee_data['kpi'] + 0.6 * employee_data['manager_rating']
return {"performance_score": round(score, 2)}

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1