1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "cvText": "Jordan Perez | Lima, Peru | jordan.perez@email.com | +51 999 999 999. Operations analyst with 3 years coordinating cross-functional projects, mapping processes, and implementing KPI dashboards that cut cycle times by 18%. Led inventory reconciliation across 12 retail stores (23% fewer discrepancies) and aligned IT, finance, and warehouse teams on order fulfillment SLAs. BBA, Universidad del Pacífico (2019).",
10 "jobTitle": "Operations Manager",
11 "jobDescription": "We are looking for an Operations Manager experienced in cross-functional leadership, process optimization, and delivering measurable cost reductions. The role coordinates initiatives across teams, implements KPIs, and drives continuous improvement.",
12 "tone": "professional",
13 "formatStyle": "hybrid",
14 "keywords": [
15 "process optimization",
16 "cross-functional leadership",
17 "cost reduction",
18 ],
19 "creativityLevel": "balanced",
20}
21
22
23run = client.actor("parseforge/cv-optimizer").call(run_input=run_input)
24
25
26print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28 print(item)
29
30