
Hi, I have a python cloud function with dir structure
Code snippet is
TypeScript
@app.post("/process")
async def process_cv(
user_id: str = Query(..., description="The ID of the user whose CV to process")
):
"""API endpoint to process the uploaded CV, extract information, and update the user profile."""
try:
cv_file_info = supabase.storage.from_("span").list(f"resumes/{user_id}")
if not cv_file_info or len(cv_file_info) == 0:
raise HTTPException(
status_code=404, detail="CV not found for the specified user"
)
cv_file_name = cv_file_info[0]["name"]
cv_download = supabase.storage.from_("span").download(
f"resumes/{user_id}/{cv_file_name}"
)
pdf_text = extract_text_from_pdf(cv_download)
print("Extracted PDF text:", pdf_text)
user_profile_data = extract_profile_info(pdf_text)
print("Extracted user profile data:", json.dumps(user_profile_data, indent=2))
return update_user_profile(user_id, user_profile_data[0])
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error processing CV: {str(e)}")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=9092)
I set the build command for pip install from requirements.txt but what must I set the entry point as under Configuration?
TL;DR
The entrypoint for the Python cloud function code snippet provided should be set as `python -m your_script.main:app` under Configuration.Recommended threads
- Processing forever
Why is this processing forever?
- Migration to new region: not so good.
We attempted to do a migration to NYC... and things didn't go well. We followed the steps (exactly) as shown in the video, updated our app with the new endpoint...
- schedule functions not working
starting from 15:02 utc time my schedule function stops working. I was able to execute it using the GUI. The schedule is every 5 minutes and I can see a clock i...
