Spaces:
Runtime error
Runtime error
SujanMidatani
commited on
Commit
•
9dafcb0
1
Parent(s):
9d09144
up
Browse files
app.py
CHANGED
@@ -57,6 +57,7 @@ def finalGradingPrompt(resume_summary, role, exp, ires):
|
|
57 |
def get_shape(csv_file,resume_summary,role,experience):
|
58 |
with open(csv_file.name, "rb") as f:
|
59 |
k=pd.read_csv(f)
|
|
|
60 |
l=finalGradingPrompt(resume_summary=resume_summary,role=role,exp=experience,ires=k)
|
61 |
return l
|
62 |
gr.Interface(fn=get_shape, inputs=['file','json','text','text'], outputs='text').launch()
|
|
|
57 |
def get_shape(csv_file,resume_summary,role,experience):
|
58 |
with open(csv_file.name, "rb") as f:
|
59 |
k=pd.read_csv(f)
|
60 |
+
k.dropna()
|
61 |
l=finalGradingPrompt(resume_summary=resume_summary,role=role,exp=experience,ires=k)
|
62 |
return l
|
63 |
gr.Interface(fn=get_shape, inputs=['file','json','text','text'], outputs='text').launch()
|