Spaces:
Sleeping
Sleeping
resolving error
Browse files
app.py
CHANGED
|
@@ -16,11 +16,9 @@ with st.spinner('Analyzing Resume with Job Description...'):
|
|
| 16 |
for page in pdf_reader.pages:
|
| 17 |
text += page.extract_text()
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
result = crewai.kickoff(inputs={"pdf":text,
|
| 22 |
"job_posting_url":url
|
| 23 |
})
|
| 24 |
|
| 25 |
-
|
| 26 |
|
|
|
|
| 16 |
for page in pdf_reader.pages:
|
| 17 |
text += page.extract_text()
|
| 18 |
|
|
|
|
|
|
|
| 19 |
result = crewai.kickoff(inputs={"pdf":text,
|
| 20 |
"job_posting_url":url
|
| 21 |
})
|
| 22 |
|
| 23 |
+
st.write(result)
|
| 24 |
|