Spaces:
Runtime error
Runtime error
SujanMidatani
commited on
Commit
•
eaed141
1
Parent(s):
503c20d
app.py
CHANGED
@@ -55,7 +55,7 @@ def finalGradingPrompt(resume_summary, role, exp, ires):
|
|
55 |
# Return the final evaluation from the response
|
56 |
return res['final_evaluation']
|
57 |
def get_shape(csv_file,resume_summary,role,experience):
|
58 |
-
with open(csv_file.name, "
|
59 |
k=pd.read_csv(f)
|
60 |
k.dropna()
|
61 |
l=finalGradingPrompt(resume_summary=resume_summary,role=role,exp=experience,ires=k)
|
|
|
55 |
# Return the final evaluation from the response
|
56 |
return res['final_evaluation']
|
57 |
def get_shape(csv_file,resume_summary,role,experience):
|
58 |
+
with open(csv_file.name, "r") as f:
|
59 |
k=pd.read_csv(f)
|
60 |
k.dropna()
|
61 |
l=finalGradingPrompt(resume_summary=resume_summary,role=role,exp=experience,ires=k)
|