1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "items": [
12 {
13 "decision": "Should our SaaS company build or buy customer support automation?",
14 "context": "12-person company; $20k budget; launch in 8 weeks; two engineers; EU customers.",
15 "candidates": [
16 "Build in-house",
17 "Buy a managed platform"
18 ],
19 "priorities": [
20 "Launch speed",
21 "Total cost",
22 "EU data handling",
23 "Maintenance burden"
24 ]
25 }
26 ]
27};
28
29
30const run = await client.actor("physealabs/decision-framer").call(input);
31
32
33console.log('Results from dataset');
34console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35const { items } = await client.dataset(run.defaultDatasetId).listItems();
36items.forEach((item) => {
37 console.dir(item);
38});
39
40