-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
761 lines (761 loc) · 29.4 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
{
"consoleReadmeSuffixUrl": "https://raw.githubusercontent.com/apify/actor-templates/master/templates/console_readme_suffix.md",
"localReadmeSuffixUrl": "https://raw.githubusercontent.com/apify/actor-templates/master/templates/local_readme_suffix.md",
"templates": [
{
"id": "python-llamaindex-agent",
"name": "python-llamaindex-agent",
"label": "LlamaIndex agent",
"category": "python",
"description": "LlamaIndex agent to scrape, deduplicate and summarize contact details from a website",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-llamaindex-agent.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 600
},
"showcaseFiles": [
"src/main.py",
"src/agent.py",
"src/tools.py"
]
},
{
"id": "python-start",
"name": "python-start",
"label": "Start with Python",
"category": "python",
"technologies": [
"beautifulsoup",
"httpx"
],
"description": "Scrape single page with provided URL with HTTPX and extract data from page's HTML with Beautiful Soup.",
"messages": {
"postCreate": "To install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-start.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"aliases": [
"getting_started_python"
],
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "python-beautifulsoup",
"name": "python-beautifulsoup",
"label": "BeautifulSoup",
"category": "python",
"technologies": [
"beautifulsoup",
"httpx"
],
"description": "Example of a web scraper that uses Python HTTPX to scrape HTML from URLs provided on input, parses it using BeautifulSoup and saves results to storage.",
"messages": {
"postCreate": "To install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-beautifulsoup.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "python-playwright",
"name": "python-playwright",
"label": "Playwright + Chrome",
"category": "python",
"technologies": [
"playwright",
"chrome"
],
"description": "Crawler example that uses headless Chrome driven by Playwright to scrape a website. Headless browsers render JavaScript and can help when getting blocked.",
"messages": {
"postCreate": "To run this actor, you need to have Playwright's browsers installed.\nTo do so, activate the virtual environment in the \".venv\" folder in the actor directory, and run \"playwright install --with-deps\".\nTo install additional Python packages, you need also need to activate the virtual environment in the \".venv\" folder in the actor directory.\n"
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-playwright.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "python-selenium",
"name": "python-selenium",
"label": "Selenium + Chrome",
"category": "python",
"technologies": [
"selenium",
"chrome"
],
"description": "Scraper example built with Selenium and headless Chrome browser to scrape a website and save the results to storage. A popular alternative to Playwright.",
"messages": {
"postCreate": "To run this actor, you need to have the Selenium ChromeDriver installed.\nTo install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-selenium.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "python-empty",
"name": "python-empty",
"label": "Empty Python project",
"category": "python",
"description": "Empty template with basic structure for the Actor with Apify SDK that allows you to easily add your own functionality.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-empty.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "python-standby",
"name": "python-standby",
"label": "Standby Python project",
"category": "python",
"description": "Template with basic structure for an Actor using Standby mode that allows you to easily add your own functionality.",
"skipTests": true,
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"STARTER"
]
},
{
"id": "python-scrapy",
"name": "python-scrapy",
"label": "Scrapy",
"category": "python",
"technologies": [
"scrapy"
],
"description": "This example Scrapy spider scrapes page titles from URLs defined in input parameter. It shows how to use Apify SDK for Python and Scrapy pipelines to save results.",
"messages": {
"postCreate": "To install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-scrapy.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
"src/spiders/title.py",
"src/__main__.py",
"src/items.py",
"src/pipelines.py",
"src/settings.py"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "python-crawlee-beautifulsoup",
"name": "python-crawlee-beautifulsoup",
"label": "Crawlee + BeautifulSoup",
"category": "python",
"technologies": [
"crawlee",
"beautifulsoup"
],
"description": "Crawl and scrape websites using Crawlee and BeautifulSoup. Start from a given start URLs, and store results to Apify dataset.",
"messages": {
"postCreate": "To install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-crawlee-beautifulsoup.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"aliases": [
"getting_started_crawlee_beautifulsoup"
],
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "python-crawlee-playwright",
"name": "python-crawlee-playwright",
"label": "Crawlee + Playwright + Chrome",
"category": "python",
"technologies": [
"crawlee",
"playwright"
],
"description": "Crawl and scrape websites using Crawlee and Playwright. Start from a given start URLs, and store results to Apify dataset.",
"messages": {
"postCreate": "To install additional Python packages, you need to activate the virtual environment in the \".venv\" folder in the actor directory."
},
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-crawlee-playwright.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"aliases": [
"getting_started_crawlee_playwright"
],
"showcaseFiles": [
"src/main.py",
"src/__main__.py"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "python-langgraph",
"name": "python-langgraph",
"label": "🦜️🔗 LangGraph AI agent",
"category": "python",
"technologies": [
"langchain"
],
"description": "Example of how to use LangGraph with Apify Actors to create a social media analysis tool-calling agent.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-langgraph.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 600
},
"showcaseFiles": [
"src/main.py",
"src/tools.py"
]
},
{
"id": "python-crewai",
"name": "python-crewai",
"label": "CrewAI agent",
"category": "python",
"description": "Example of how to use CrewAI with Apify Actors to create a social media analysis tool-calling agent.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-crewai.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 600
},
"showcaseFiles": [
"src/main.py",
"src/tools.py"
]
},
{
"id": "js-start",
"name": "getting_started_node",
"label": "Start with JavaScript",
"description": "Scrape single page with provided URL with Axios and extract data from page's HTML with Cheerio.",
"category": "javascript",
"technologies": [
"nodejs",
"cheerio",
"axios"
],
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-start.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 256,
"timeoutSecs": 360
},
"showcaseFiles": [
"src/main.js"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "ts-start",
"name": "getting_started_typescript",
"label": "Start with TypeScript",
"category": "typescript",
"technologies": [
"nodejs",
"cheerio",
"axios"
],
"description": "Scrape single page with provided URL with Axios and extract data from page's HTML with Cheerio.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-start.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 256,
"timeoutSecs": 360
},
"showcaseFiles": [
"src/main.ts"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "js-crawlee-cheerio",
"name": "project_cheerio_crawler_js",
"label": "Crawlee + Cheerio",
"category": "javascript",
"technologies": [
"nodejs",
"crawlee",
"cheerio"
],
"description": "A scraper example that uses Cheerio to parse HTML. It's fast, but it can't run the website's JavaScript or pass JS anti-scraping challenges.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-crawlee-cheerio.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 3600
},
"skipOptionalDeps": true,
"showcaseFiles": [
"src/main.js"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "js-crawlee-puppeteer-chrome",
"name": "project_puppeteer_crawler_js",
"label": "Crawlee + Puppeteer + Chrome",
"category": "javascript",
"technologies": [
"nodejs",
"crawlee",
"puppeteer",
"chrome"
],
"description": "Example of a Puppeteer and headless Chrome web scraper. Headless browsers render JavaScript and are harder to block, but they're slower than plain HTTP.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-crawlee-puppeteer-chrome.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js",
"src/routes.js"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "js-crawlee-playwright-chrome",
"name": "project_playwright_crawler_js",
"label": "Crawlee + Playwright + Chrome",
"category": "javascript",
"technologies": [
"nodejs",
"crawlee",
"playwright",
"chrome"
],
"description": "Web scraper example with Crawlee, Playwright and headless Chrome. Playwright is more modern, user-friendly and harder to block than Puppeteer.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-crawlee-playwright-chrome.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js",
"src/routes.js"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "js-bootstrap-cheerio-crawler",
"name": "js-bootstrap-cheerio-crawler",
"label": "Bootstrap CheerioCrawler",
"category": "javascript",
"technologies": [
"nodejs",
"crawlee",
"cheerio"
],
"description": "Skeleton project that helps you quickly bootstrap `CheerioCrawler` in JavaScript. It's best for developers who already know Apify SDK and Crawlee.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-bootstrap-cheerio-crawler.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 2048,
"timeoutSecs": 3600
},
"skipOptionalDeps": true,
"showcaseFiles": [
"src/main.js",
"src/routes.js"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-crawlee-cheerio",
"name": "project_cheerio_crawler_ts",
"label": "Crawlee + Cheerio",
"category": "typescript",
"technologies": [
"nodejs",
"crawlee",
"cheerio"
],
"description": "A scraper example that uses Cheerio to parse HTML. It's fast, but it can't run the website's JavaScript or pass JS anti-scraping challenges.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-crawlee-cheerio.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 3600
},
"skipOptionalDeps": true,
"showcaseFiles": [
"src/main.ts"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-crawlee-puppeteer-chrome",
"name": "project_puppeteer_crawler_ts",
"label": "Crawlee + Puppeteer + Chrome",
"category": "typescript",
"technologies": [
"nodejs",
"crawlee",
"puppeteer",
"chrome"
],
"description": "Example of a Puppeteer and headless Chrome web scraper. Headless browsers render JavaScript and are harder to block, but they're slower than plain HTTP.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-crawlee-puppeteer-chrome.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts",
"src/routes.ts"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-crawlee-playwright-chrome",
"name": "project_playwright_crawler_ts",
"label": "Crawlee + Playwright + Chrome",
"category": "typescript",
"technologies": [
"nodejs",
"crawlee",
"playwright",
"chrome"
],
"description": "Web scraper example with Crawlee, Playwright and headless Chrome. Playwright is more modern, user-friendly and harder to block than Puppeteer.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-crawlee-playwright-chrome.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts",
"src/routes.ts"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-playwright-test-runner",
"name": "project_playwright_test_runner",
"label": "Playwright + Chrome Test Runner",
"category": "typescript",
"technologies": [
"nodejs",
"playwright",
"chrome"
],
"description": "Example of using the Playwright Test project to run automated website tests in the cloud and display their results. Usable as an API.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-playwright-test-runner.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts",
"src/runCodegen.ts",
"src/transform.ts"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-empty",
"name": "ts_empty",
"label": "Empty TypeScript project",
"category": "typescript",
"technologies": [
"nodejs"
],
"description": "Empty template with basic structure for the Actor with Apify SDK that allows you to easily add your own functionality.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-empty.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 2048,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "ts-standby",
"name": "ts_standby",
"label": "Standby TypeScript project",
"category": "typescript",
"technologies": [
"nodejs"
],
"skipTests": true,
"description": "Template with basic structure for an Actor using Standby mode that allows you to easily add your own functionality.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts"
],
"useCases": [
"STARTER"
]
},
{
"id": "js-cypress",
"name": "project_cypress",
"label": "Cypress",
"category": "javascript",
"technologies": [
"nodejs",
"cypress"
],
"description": "Example of running Cypress tests and saving their results on the Apify platform. JSON results are saved to Dataset, videos to Key-value store.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-cypress.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js",
"cypress/e2e/first-spec.cy.js",
"cypress/e2e/second-spec.cy.js",
"cypress/support/e2e.js"
],
"useCases": [
"AUTOMATION"
]
},
{
"id": "js-empty",
"name": "project_empty",
"label": "Empty JavaScript Project",
"category": "javascript",
"technologies": [
"nodejs"
],
"description": "Empty template with basic structure for the Actor with Apify SDK that allows you to easily add your own functionality.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-empty.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 2048,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js"
],
"useCases": [
"WEB_SCRAPING"
]
},
{
"id": "js-standby",
"name": "js_standby",
"label": "Standby JavaScript Project",
"category": "javascript",
"technologies": [
"nodejs"
],
"skipTests": true,
"description": "Template with basic structure for an Actor using Standby mode that allows you to easily add your own functionality.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js"
],
"useCases": [
"STARTER"
]
},
{
"id": "js-langchain",
"name": "project_langchain_js",
"label": "🦜️🔗 LangChain",
"category": "javascript",
"technologies": [
"nodejs",
"langchain"
],
"description": "Example of how to use LangChain.js with Apify to crawl the web data, vectorize them, and prompt the OpenAI model.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-langchain.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 4096,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js",
"src/vector_index_cache.js"
]
},
{
"id": "js-langgraph-agent",
"name": "project-langgraph-agent-javascript",
"label": "LangGraph agent",
"category": "javascript",
"technologies": [
"nodejs",
"langchain"
],
"description": "LangGraph agent in JavaScript for answering questions via web search.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-langgraph-agent.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024,
"timeoutSecs": 300
},
"showcaseFiles": [
"src/main.js",
"src/tools.js"
]
},
{
"id": "ts-start-bun",
"name": "getting_started_typescript_bun",
"label": "Start with TypeScript on Bun",
"category": "typescript",
"technologies": [
"bun",
"cheerio",
"axios"
],
"description": "Scrape single page with provided URL with Axios and extract data from page's HTML with Cheerio.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-start-bun.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 256,
"timeoutSecs": 360
},
"showcaseFiles": [
"src/main.ts"
],
"useCases": [
"STARTER",
"WEB_SCRAPING"
]
},
{
"id": "ts-bee-agent",
"name": "ts-bee-agent",
"label": "🐝 Bee Framework Agent",
"category": "typescript",
"description": "Example of how to use Bee Agent Framework with Apify Actors to create a social media analysis tool-calling agent.",
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-bee-agent.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 512,
"timeoutSecs": 600
},
"showcaseFiles": [
"src/main.ts"
]
}
]
}