1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "items": [{
9 "question": "Should our 12-person SaaS company build or buy customer support automation?",
10 "context": "We need a recommendation for next quarter. Budget and timeline are not yet fixed.",
11 }] }
12
13
14run = client.actor("physealabs/question-decomposer").call(run_input=run_input)
15
16
17print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
18for item in client.dataset(run.default_dataset_id).iterate_items():
19 print(item)
20
21