Compare commits

...

1 Commits
main ... v2

Author SHA1 Message Date
FunctionsAPI
e24ab8226d Automatic push from FunctionsAPI 2025-08-24 07:04:44 +00:00
3 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1 @@
# d28a322f9764401e88710ce7084612a1
# python hello-world

5
main.py Normal file
View File

@ -0,0 +1,5 @@
python
CopyEdit
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