-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabs.json
More file actions
1652 lines (1652 loc) · 77.3 KB
/
Copy pathlabs.json
File metadata and controls
1652 lines (1652 loc) · 77.3 KB
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"$schema": "./labs.schema.json",
"meta": {
"title": "Backblaze Labs",
"homeTitle": "Backblaze Labs — Open Source Tools & Integrations for B2",
"tagline": "Open source experiments, integrations, and tools built on Backblaze B2.",
"description": "Curated open source projects built on Backblaze B2 — SDKs, agent skills, IDE extensions, reference pipelines, and community integrations.",
"github": "https://github.com/backblaze-labs",
"homepage": "https://www.backblaze.com",
"b2": "https://www.backblaze.com/cloud-storage"
},
"categories": [
{
"id": "ai-ml",
"label": "AI / ML",
"icon": "sparkle"
},
{
"id": "data-pipelines",
"label": "Data Pipelines",
"icon": "flow"
},
{
"id": "developer-tools",
"label": "Developer Tools",
"icon": "wrench"
},
{
"id": "notebooks",
"label": "Notebooks",
"icon": "notebook"
},
{
"id": "ide-extensions",
"label": "IDE Extensions",
"icon": "code"
},
{
"id": "agent-skills",
"label": "Agent Skills",
"icon": "bot"
},
{
"id": "awesome-lists",
"label": "Awesome Lists",
"icon": "star"
},
{
"id": "infra",
"label": "Infrastructure",
"icon": "server"
},
{
"id": "community",
"label": "Community",
"icon": "users"
}
],
"types": [
{
"id": "sdk",
"label": "SDK"
},
{
"id": "tool",
"label": "Tool"
},
{
"id": "extension",
"label": "Extension"
},
{
"id": "skill",
"label": "Skill"
},
{
"id": "sample",
"label": "Sample"
},
{
"id": "list",
"label": "Awesome List"
},
{
"id": "integration",
"label": "Integration"
}
],
"languages": [
{
"id": "python",
"label": "Python"
},
{
"id": "typescript",
"label": "TypeScript"
},
{
"id": "javascript",
"label": "JavaScript"
},
{
"id": "markdown",
"label": "Markdown"
}
],
"integrations": [
{
"id": "mlflow",
"title": "MLflow",
"tagline": "Backblaze B2 as the MLflow artifact store.",
"description": "MLflow's tracking server supports Backblaze B2 directly via the S3-compatible API. Configure `MLFLOW_S3_ENDPOINT_URL` and your B2 credentials, and your runs, models, and artifacts persist to B2 — no extra plugin, fully documented upstream.",
"categories": ["ai-ml", "data-pipelines", "infra", "community"],
"type": "integration",
"tags": ["mlflow", "mlops", "artifact-store", "tracking", "s3-compatible"],
"repo": "mlflow/mlflow",
"source": "MLflow",
"url": "https://mlflow.org/docs/latest/self-hosting/architecture/artifact-store/#backblaze-b2",
"site": "https://mlflow.org/",
"docs": "https://mlflow.org/docs/latest/",
"icon": "flow",
"featured": true,
"languages": ["python", "typescript", "javascript"]
},
{
"id": "cvat",
"title": "CVAT",
"tagline": "Backblaze B2 as a cloud storage backend for CVAT.",
"description": "CVAT — the open source computer vision annotation tool — supports Backblaze B2 as an S3-compatible cloud storage. Attach B2 buckets to your projects to store annotation source data and exported results without paying egress fees.",
"categories": ["ai-ml", "data-pipelines", "community"],
"type": "integration",
"tags": ["cvat", "annotation", "computer-vision", "data-labeling", "s3-compatible"],
"repo": "cvat-ai/cvat",
"source": "CVAT",
"url": "https://docs.cvat.ai/docs/workspace/cloud-storages/",
"site": "https://www.cvat.ai/",
"docs": "https://docs.cvat.ai/",
"demo": "https://app.cvat.ai/",
"preview": "https://cdn.prod.website-files.com/62bebfb83044de7f13ae257e/685e448d192137f9375afc38_Use%20Case%202K-H265%20Low-Hevc-3-transcode.mp4",
"icon": "flow",
"featured": true,
"languages": ["python", "typescript", "javascript"]
},
{
"id": "genblaze",
"title": "Genblaze",
"tagline": "Generative AI media pipelines, with provenance.",
"description": "Open source Python SDK that orchestrates generative AI media pipelines across video, audio, and image providers — with built-in provenance for every output, persisted to Backblaze B2.",
"categories": ["ai-ml", "data-pipelines"],
"type": "sdk",
"tags": ["python", "sdk", "ai", "video", "audio", "image", "openai", "gemini"],
"repo": "backblaze-labs/genblaze",
"url": "https://github.com/backblaze-labs/genblaze",
"icon": "flame",
"featured": true,
"languages": ["python"]
},
{
"id": "claude-skill-b2",
"title": "B2 Cloud Storage Skill",
"tagline": "Manage B2 from Claude in natural language.",
"description": "Claude Skill for Backblaze B2 Cloud Storage management from the terminal. Manage buckets, list and search files, audit storage usage, detect stale or large objects, review security posture, and safely clean up data using natural language.",
"categories": ["agent-skills", "developer-tools"],
"type": "skill",
"tags": ["claude", "agent-skill", "cli", "natural-language"],
"repo": "backblaze-labs/claude-skill-b2-cloud-storage",
"url": "https://github.com/backblaze-labs/claude-skill-b2-cloud-storage",
"icon": "bot",
"featured": true,
"languages": ["python"]
},
{
"id": "hf-cache-sync",
"title": "HF Cache Sync",
"tagline": "Shared Hugging Face cache for teams.",
"description": "Sync local Hugging Face cache to Backblaze B2 or S3, eliminate repeated downloads, and enable fast, consistent model access across machines and CI runners.",
"categories": ["ai-ml", "infra"],
"type": "tool",
"tags": ["python", "huggingface", "mlops", "cache", "ci"],
"repo": "backblaze-labs/hf-cache-sync",
"url": "https://github.com/backblaze-labs/hf-cache-sync",
"icon": "server",
"featured": false,
"languages": ["python"]
},
{
"id": "jupyter-b2",
"title": "jupyter-b2",
"tagline": "%b2 magic and fsspec backend for Jupyter.",
"description": "Jupyter/IPython magic commands and fsspec backend for Backblaze B2. Load datasets, save models, and manage cloud storage — all from your notebook with simple %b2 commands. No boilerplate, no SDK ceremony.",
"categories": ["notebooks", "ai-ml"],
"type": "tool",
"tags": ["python", "jupyter", "ipython", "fsspec", "magic"],
"repo": "backblaze-labs/jupyter-b2",
"url": "https://pypi.org/project/jupyter-b2/",
"icon": "notebook",
"languages": ["python"]
},
{
"id": "jupyterlab-b2",
"title": "jupyterlab-b2",
"tagline": "Native B2 file browser inside JupyterLab.",
"description": "JupyterLab extension that registers Backblaze B2 as a native drive — same look, same breadcrumbs, drag-and-drop upload, click-to-open, and full bucket management from the sidebar.",
"categories": ["notebooks", "developer-tools"],
"type": "extension",
"tags": ["typescript", "jupyterlab", "extension", "file-browser"],
"repo": "backblaze-labs/jupyterlab-b2",
"url": "https://pypi.org/project/jupyterlab-b2/",
"icon": "notebook",
"languages": ["typescript", "python", "javascript"]
},
{
"id": "b2-vscode",
"title": "B2 for VS Code",
"tagline": "Browse and manage B2 inside your editor.",
"description": "Bucket explorer, auto-detected credentials, file open/download/rename/delete, Copilot tools for B2 operations, and SARIF-compatible structured logging for CI/CD — all without leaving VS Code.",
"categories": ["ide-extensions", "developer-tools"],
"type": "extension",
"tags": ["typescript", "vscode", "extension", "copilot"],
"repo": "backblaze-labs/b2-vscode",
"url": "https://github.com/backblaze-labs/b2-vscode",
"icon": "code",
"languages": ["typescript", "javascript"]
},
{
"id": "genblaze-gmicloud",
"title": "Genblaze × GMICloud",
"tagline": "Image-to-video pipeline in ~100 lines.",
"description": "Sample app that composes GMICloud image and video models with Genblaze and persists every artifact to B2 with a SHA-256-verified manifest. One prompt becomes an anchor image, then fans out concurrently to three video models.",
"categories": ["ai-ml", "data-pipelines"],
"type": "sample",
"tags": ["python", "genblaze", "gmicloud", "video", "image-to-video"],
"repo": "backblaze-labs/genblaze-gmicloud-pipeline",
"url": "https://github.com/backblaze-labs/genblaze-gmicloud-pipeline",
"icon": "flow",
"languages": ["typescript", "python", "javascript"]
},
{
"id": "nemotron-genblaze-b2",
"title": "NVIDIA Nemotron × Genblaze",
"tagline": "Reference pipeline with Nemotron + B2.",
"description": "Reference pipeline showing how to use NVIDIA Nemotron models with Genblaze and persist artifacts to Backblaze B2.",
"categories": ["ai-ml", "data-pipelines"],
"type": "sample",
"tags": ["python", "nvidia", "nemotron", "genblaze"],
"repo": "backblaze-labs/nvidia-nemotron-genblaze-b2",
"url": "https://github.com/backblaze-labs/nvidia-nemotron-genblaze-b2",
"icon": "flow",
"languages": ["typescript", "python", "javascript"]
},
{
"id": "awesome-agent-infrastructure",
"title": "Awesome Agent Infrastructure",
"tagline": "Memory, sandboxes, MCP, and more.",
"description": "A curated list of AI agent infrastructure: memory stores, vector databases, execution sandboxes, MCP servers, tool registries, observability, and evaluation tools for building and running autonomous agents.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["agents", "mcp", "vector-db", "sandbox", "memory"],
"repo": "backblaze-labs/awesome-agent-infrastructure",
"url": "https://github.com/backblaze-labs/awesome-agent-infrastructure",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-ml-data-pipelines",
"title": "Awesome ML Data Pipelines",
"tagline": "Versioning, labeling, feature stores.",
"description": "A curated list of ML data pipeline tools: dataset versioning, labeling, feature stores, workflow orchestration, data loaders, and storage infrastructure for training and inference.",
"categories": ["awesome-lists", "data-pipelines"],
"type": "list",
"tags": ["mlops", "feature-store", "labeling", "versioning"],
"repo": "backblaze-labs/awesome-ml-data-pipelines",
"url": "https://github.com/backblaze-labs/awesome-ml-data-pipelines",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-multimodal-data",
"title": "Awesome Multimodal Data",
"tagline": "Video, image, audio, 3D, robotics.",
"description": "A curated list of multimodal AI datasets and data infrastructure: video, image, audio, 3D, and robotics data, with formats, loaders, versioning, and labeling tools for large-scale training.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["datasets", "multimodal", "video", "audio", "3d"],
"repo": "backblaze-labs/awesome-multimodal-data",
"url": "https://github.com/backblaze-labs/awesome-multimodal-data",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-image-generation",
"title": "Awesome Image Generation",
"tagline": "Text-to-image APIs, SDKs, and tools.",
"description": "A curated list of AI image generation APIs, SDKs, and tools including text-to-image, image editing, diffusion models, generative art systems, and multimodal AI platforms.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["image", "diffusion", "generative-ai", "text-to-image"],
"repo": "backblaze-labs/awesome-image-generation",
"url": "https://github.com/backblaze-labs/awesome-image-generation",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-video-generation",
"title": "Awesome Video Generation",
"tagline": "Text-to-video, editing, multimodal.",
"description": "A curated list of AI video generation APIs, SDKs, and tools including text-to-video, video editing, multimodal generation, diffusion models, and generative AI platforms.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["video", "text-to-video", "diffusion", "generative-ai"],
"repo": "backblaze-labs/awesome-video-generation",
"url": "https://github.com/backblaze-labs/awesome-video-generation",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-audio-generation",
"title": "Awesome Audio Generation",
"tagline": "TTS, speech synthesis, music, voice cloning.",
"description": "A curated list of AI audio generation APIs, SDKs, and tools including text-to-speech, speech synthesis, music generation, voice cloning, sound design, and generative AI platforms.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["audio", "tts", "voice", "music", "generative-ai"],
"repo": "backblaze-labs/awesome-audio-generation",
"url": "https://github.com/backblaze-labs/awesome-audio-generation",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "awesome-physical-ai",
"title": "Awesome Physical AI",
"tagline": "Robotics, world models, sim-to-real.",
"description": "A curated list of physical AI tools: robotics foundation models, world models, simulators, teleoperation, sim-to-real, and embodied AI datasets for robot learning and autonomous systems.",
"categories": ["awesome-lists", "ai-ml"],
"type": "list",
"tags": ["robotics", "world-models", "sim2real", "embodied-ai"],
"repo": "backblaze-labs/awesome-physical-ai",
"url": "https://github.com/backblaze-labs/awesome-physical-ai",
"icon": "star",
"languages": ["markdown"]
},
{
"id": "comfyui-cloud-storage",
"title": "ComfyUI Cloud Storage",
"tagline": "ComfyUI cloud storage nodes with Backblaze B2 and S3-compatible support.",
"description": "ComfyUI cloud storage nodes with Backblaze B2 and S3-compatible support. Upload images, video, and audio, and manage AI models across machines with a unified workflow.",
"categories": ["ai-ml", "developer-tools"],
"type": "tool",
"tags": ["comfyui", "comfyui-custom-node", "generative-ai", "cloudstorage", "s3-compatible"],
"repo": "backblaze-labs/comfyui-cloud-storage",
"url": "https://github.com/backblaze-labs/comfyui-cloud-storage",
"icon": "sparkle",
"featured": false,
"languages": ["python"]
},
{
"id": "vibe-coding-starter-kit",
"title": "Vibe Coding Starter Kit",
"tagline": "Starter kit for vibe coders building apps with file uploads and object storage.",
"description": "Starter kit for vibe coders building apps with file uploads and object storage. This full-stack dashboard template integrates with Backblaze B2 Cloud Storage and includes secure upload flows, file browsing, and basic storage management.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"cloudstorage",
"file-storage",
"starter-kit",
"starterkit",
"vibe-coding",
"vibecoding"
],
"repo": "backblaze-b2-samples/vibe-coding-starter-kit",
"url": "https://github.com/backblaze-b2-samples/vibe-coding-starter-kit",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "agentic-rag-vector-starter-kit",
"title": "Agentic RAG Starter Kit",
"tagline": "Agentic RAG starter kit with Langchain, LanceDB, and Backblaze B2.",
"description": "Agentic RAG vector starter kit with AI coding agent architecture, Langchain, LanceDB, and Backblaze B2 for document upload, semantic search, grounded chat, and document citations.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"agentic-ai",
"agentic-coding",
"agentic-framework",
"agentic-rag",
"agentic-workflow",
"backblaze-b2"
],
"repo": "backblaze-b2-samples/agentic-rag-vector-starter-kit",
"url": "https://github.com/backblaze-b2-samples/agentic-rag-vector-starter-kit",
"icon": "wrench",
"featured": false,
"languages": ["python", "typescript", "javascript"]
},
{
"id": "zeroshot-image-classifier",
"title": "Zero-shot Image Classifier",
"tagline": "Browser image classification with OpenAI CLIP and Transformers.js.",
"description": "Browser-based image classification example application using OpenAI CLIP and Transformers.js. Upload images, run zero-shot classification with custom labels directly in the browser, and store images plus results in S3-compatible Backblaze B2 cloud object storage using pre-signed uploads.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"image-classification",
"image-classification-algorithms",
"image-classification-model",
"image-classification-tutorial",
"image-classifier",
"image-processing"
],
"repo": "backblaze-b2-samples/b2-zeroshot-image-classifier",
"url": "https://github.com/backblaze-b2-samples/b2-zeroshot-image-classifier",
"icon": "wrench",
"featured": false,
"languages": ["javascript"]
},
{
"id": "whisper-transformersjs-transcriber",
"title": "Whisper Transcriber",
"tagline": "Browser-based audio transcription with Whisper and Transformers.js.",
"description": "Browser-based audio transcription using Whisper and Transformers.js, storing results in Backblaze B2 Cloud Storage.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"cloud-storage",
"cloudstorage",
"transcription",
"transformers-js",
"transformersjs",
"voice-transcription"
],
"repo": "backblaze-b2-samples/b2-whisper-transformersjs-transcriber",
"url": "https://github.com/backblaze-b2-samples/b2-whisper-transformersjs-transcriber",
"icon": "wrench",
"featured": false,
"languages": ["javascript"]
},
{
"id": "transformers-video-object-detection",
"title": "Video Object Detection",
"tagline": "Real-time browser video object detection with Transformers.js + YOLOv9.",
"description": "Real-time video object detection monitoring demo using Transformers.js and Backblaze B2 Cloud Storage. Runs YOLOv9 fully in the browser with automatic capture intervals, no server or GPU required. Detected snapshots and metadata are stored in low cost, scalable B2 storage for analysis and retention.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"cloud-storage",
"cloudstorage",
"object-detection",
"transformers-js",
"transformersjs",
"video-object-detection"
],
"repo": "backblaze-b2-samples/b2-transformers-video-object-detection",
"url": "https://github.com/backblaze-b2-samples/b2-transformers-video-object-detection",
"icon": "wrench",
"featured": false,
"languages": ["javascript"]
},
{
"id": "transformerjs-background-removal",
"title": "Background Removal",
"tagline": "Browser AI image background removal with Transformers.js and RMBG-1.4.",
"description": "Browser-based AI image background removal app using Transformers.js and the RMBG-1.4 model, storing original and cutout images in Backblaze B2 Cloud Storage — no GPU or backend required.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"background-removal",
"cloud-storage",
"cloudstorage",
"image-processing",
"transformers-js",
"transformersjs"
],
"repo": "backblaze-b2-samples/b2-transformerjs-background-removal",
"url": "https://github.com/backblaze-b2-samples/b2-transformerjs-background-removal",
"icon": "wrench",
"featured": false,
"languages": ["javascript"]
},
{
"id": "openclaw-b2-sync-backup",
"title": "Openclaw B2 Sync Backup",
"tagline": "OpenClaw automatic backup and sync to Backblaze B2.",
"description": "OpenClaw automatic backup and sync to Backblaze B2. Keep state durable across machines, restore instantly on new hardware, and roll back to previous snapshots if configs break or memory becomes corrupted.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backup",
"openclaw",
"openclaw-extension",
"openclaw-plugin",
"openclaw-setup",
"openclaw-skill"
],
"repo": "backblaze-b2-samples/openclaw-b2-sync-backup",
"url": "https://github.com/backblaze-b2-samples/openclaw-b2-sync-backup",
"icon": "wrench",
"featured": false,
"languages": ["typescript"]
},
{
"id": "image-generation-prompt-flow",
"title": "Image Generation Prompt Flow",
"tagline": "Compare GPT Image, DALL-E, Gemini, and Google Imagen prompts side by side.",
"description": "AI image generation prompt flow example app focused on prompt engineering and prompt optimization, comparing models GPT Image, DALL-E, Gemini Nano Banana, and Google Imagen. Shows how image prompts are structured, refined, and evolved from input to final output, with clear prompt lineage for learning and experimentation.",
"categories": ["ai-ml"],
"type": "sample",
"tags": [
"generative-ai",
"google-gemini",
"image-generation",
"nano-banana",
"nanobanana",
"nanobanana-api"
],
"repo": "backblaze-b2-samples/image-generation-prompt-flow",
"url": "https://github.com/backblaze-b2-samples/image-generation-prompt-flow",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "javascript"]
},
{
"id": "pixeltable-multimodal-data",
"title": "Pixeltable Multimodal Data",
"tagline": "Notebooks for managing multimodal datasets with Pixeltable and Backblaze B2.",
"description": "Example notebooks showing how to use Pixeltable with Backblaze B2 for managing and querying multimodal datasets.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"data-orchestration",
"data-processing",
"multimodal",
"pixeltable",
"cloud-storage",
"cloudstorage"
],
"repo": "backblaze-b2-samples/b2-pixeltable-multimodal-data",
"url": "https://github.com/backblaze-b2-samples/b2-pixeltable-multimodal-data",
"icon": "wrench",
"featured": false,
"languages": ["markdown"]
},
{
"id": "meltano",
"title": "Meltano",
"tagline": "Backblaze B2 as a state backend for Meltano data pipelines.",
"description": "Meltano supports Backblaze B2 as a state backend via its S3-compatible API. Configure `state_backend.uri` with your B2 bucket and credentials and your pipeline state persists to B2 between runs — no extra plugin, fully documented upstream.",
"categories": ["ai-ml", "community"],
"type": "integration",
"tags": ["meltano", "s3-compatible"],
"repo": null,
"source": "Meltano",
"url": "https://docs.meltano.com/concepts/state_backends/#backblaze-b2-example",
"icon": "flow",
"featured": false,
"languages": ["python"]
},
{
"id": "pixeltable",
"title": "Pixeltable",
"tagline": "Backblaze B2 as S3-compatible storage for Pixeltable's table stores.",
"description": "Pixeltable is a declarative table-based system for multimodal AI data. Configure your B2 endpoint and credentials and Pixeltable persists tables, media, and computed columns to B2 — same path as the S3 / GCS / R2 backends.",
"categories": ["ai-ml", "community"],
"type": "integration",
"tags": ["pixeltable", "pixel-table", "s3-compatible"],
"repo": null,
"source": "Pixel Table",
"url": "https://docs.pixeltable.com/integrations/cloud-storage#backblaze-b2",
"icon": "flow",
"featured": false,
"languages": ["python"]
},
{
"id": "b2-action",
"title": "B2 Action",
"tagline": "The Backblaze B2 GitHub Action",
"description": "The Backblaze B2 GitHub Action",
"categories": ["developer-tools"],
"type": "tool",
"tags": ["b2", "github-actions"],
"repo": "backblaze-labs/b2-action",
"url": "https://github.com/backblaze-labs/b2-action",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "javascript"]
},
{
"id": "firewatch-agent",
"title": "Firewatch Agent",
"tagline": "FireWatch is an AI-powered wildfire detection and alerting pipeline using…",
"description": "FireWatch is an AI-powered wildfire detection and alerting pipeline using OpenClaw, Nemotron, and Backblaze B2 to process satellite hotspot data, live weather, and explainable risk scores for faster wildfire response.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["nemoclaw", "openclaw"],
"repo": "backblaze-b2-samples/firewatch-agent",
"url": "https://github.com/backblaze-b2-samples/firewatch-agent",
"icon": "wrench",
"featured": false,
"languages": ["python"]
},
{
"id": "voice-memo-ai-second-brain",
"title": "Voice Memo Ai Second Brain",
"tagline": "Personal voice-memo second brain on Backblaze B2 — record, transcribe, tag,…",
"description": "Personal voice-memo second brain on Backblaze B2 — record, transcribe, tag, cross-reference, and summarize. FastAPI + Next.js reference app, no database, B2 is the source of truth.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"openai",
"openai-api",
"voice",
"voice-recognition"
],
"repo": "backblaze-b2-samples/voice-memo-ai-second-brain",
"url": "https://github.com/backblaze-b2-samples/voice-memo-ai-second-brain",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "arxiv-insight-briefs-nvidia-nemotron",
"title": "Arxiv Insight Briefs Nvidia Nemotron",
"tagline": "arXiv research briefing pipeline that routes natural language queries to…",
"description": "arXiv research briefing pipeline that routes natural language queries to relevant papers, caches PDFs in Backblaze B2, extracts key sections with PyMuPDF, and generates citation-backed insight briefs using NVIDIA Nemotron.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["arxiv", "arxiv-api", "arxiv-papers", "cloudstorage", "data-processing", "insights"],
"repo": "backblaze-b2-samples/arxiv-insight-briefs-nvidia-nemotron",
"url": "https://github.com/backblaze-b2-samples/arxiv-insight-briefs-nvidia-nemotron",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "video-to-insights-nvidia-parakeet-llama",
"title": "Video To Insights Nvidia Parakeet Llama",
"tagline": "AI-powered video analysis pipeline that downloads YouTube videos, stores…",
"description": "AI-powered video analysis pipeline that downloads YouTube videos, stores durable artifacts in Backblaze B2, transcribes audio with NVIDIA Parakeet, generates timestamped insights with Llama 3.3, and serves interactive seekable video playback.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"nvidia-parakeet",
"parakeet",
"videoanalysis",
"youtube"
],
"repo": "backblaze-b2-samples/video-to-insights-nvidia-parakeet-llama",
"url": "https://github.com/backblaze-b2-samples/video-to-insights-nvidia-parakeet-llama",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "gpt-realtime-whisper-live-transcript-redactor",
"title": "Gpt Realtime Whisper Live Transcript Redactor",
"tagline": "Live mic-to-text transcription with inline PII, secrets, and glossary…",
"description": "Live mic-to-text transcription with inline PII, secrets, and glossary redaction on Backblaze B2 — stream audio through OpenAI Realtime + Whisper, redact in flight, and persist a privacy-default session bundle. FastAPI + Next.js B2 sample app.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["backblaze-b2", "cloudstorage", "fastapi", "nextjs", "object-storage", "openai"],
"repo": "backblaze-b2-samples/gpt-realtime-whisper-live-transcript-redactor",
"url": "https://github.com/backblaze-b2-samples/gpt-realtime-whisper-live-transcript-redactor",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "ai-music-studio",
"title": "Ai Music Studio",
"tagline": "AI music generator where every regenerate, remix & branch is a node in a…",
"description": "AI music generator where every regenerate, remix & branch is a node in a revision tree — durable on Backblaze B2. FastAPI + Next.js B2 sample app.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"ai-music",
"fastapi",
"music-generation",
"nextjs",
"object-storage",
"revision-history"
],
"repo": "backblaze-b2-samples/ai-music-studio",
"url": "https://github.com/backblaze-b2-samples/ai-music-studio",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "ai-meeting-notes",
"title": "Ai Meeting Notes",
"tagline": "AI meeting notes on Backblaze B2 — record or upload meetings, transcribe with…",
"description": "AI meeting notes on Backblaze B2 — record or upload meetings, transcribe with speaker diarization, and auto-generate summaries, decisions, and action items. FastAPI + Next.js B2 sample app, searchable across every past meeting.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"action-items",
"ai-meeting-notes",
"backblaze-b2",
"cloudstorage",
"fastapi",
"meeting-notes"
],
"repo": "backblaze-b2-samples/ai-meeting-notes",
"url": "https://github.com/backblaze-b2-samples/ai-meeting-notes",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "sdk-typescript",
"title": "TypeScript SDK",
"tagline": "Backblaze-maintained TypeScript & JavaScript SDK for B2 Cloud Storage.",
"description": "Backblaze-maintained TypeScript and JavaScript SDK for B2 Cloud Storage, currently incubating in Backblaze-Labs",
"categories": ["developer-tools"],
"type": "sdk",
"tags": ["b2", "javascript", "sdk", "sdk-js", "typescript"],
"repo": "backblaze-labs/b2-sdk-typescript",
"url": "https://github.com/backblaze-labs/b2-sdk-typescript",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "javascript"]
},
{
"id": "ai-headshot-studio",
"title": "AI Headshot Studio",
"tagline": "Fine-tune a likeness LoRA from selfies and render headshots, stored on B2.",
"description": "AI headshot generator that fine-tunes a likeness LoRA from your selfies and renders professional headshots across style packs. Every artifact — selfies, captions, the trained model, and generated images — lives on Backblaze B2 (S3-compatible). Next.js + FastAPI sample with a real face-data privacy lifecycle.",
"categories": ["ai-ml"],
"type": "sample",
"tags": [
"ai-headshots",
"backblaze-b2",
"cloudstorage",
"diffusers",
"fastapi",
"generative-ai"
],
"repo": "backblaze-b2-samples/ai-headshot-studio",
"url": "https://github.com/backblaze-b2-samples/ai-headshot-studio",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "comic-storyboard-b2",
"title": "Comic Storyboard",
"tagline": "Turn one idea into a character-consistent multi-panel comic, stored on B2.",
"description": "Turn a one-sentence idea into a character-consistent multi-panel comic, with every AI-generated frame persisted to Backblaze B2 storage and a SHA-256 provenance manifest. A Genblaze sample app: Next.js + FastAPI, FLUX and Replicate image gen, zero direct S3 code.",
"categories": ["ai-ml"],
"type": "sample",
"tags": [
"ai-image-generation",
"anthropic",
"backblaze-b2",
"cloudstorage",
"comic-generator",
"fastapi"
],
"repo": "backblaze-b2-samples/comic-storyboard-b2",
"url": "https://github.com/backblaze-b2-samples/comic-storyboard-b2",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "personal-video-ai-search",
"title": "Personal Video AI Search",
"tagline": "AI-powered semantic search over your personal video archive on Backblaze B2.",
"description": "AI-powered semantic search over your personal video archive on Backblaze B2. Indexes every clip on three signals — Whisper transcripts, multimodal scene captions, and locally clustered faces — then answers natural-language queries with playable clips. No database: the search and face indexes are JSON in the bucket.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"face-recognition",
"fastapi",
"multimodal-ai",
"nextjs"
],
"repo": "backblaze-b2-samples/personal-video-ai-search",
"url": "https://github.com/backblaze-b2-samples/personal-video-ai-search",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "ai-sticker-pack-generator",
"title": "AI Sticker Pack Generator",
"tagline": "Turn one prompt into a consistent transparent sticker pack, stored on B2.",
"description": "AI sticker pack generator: turn one text prompt into a consistent pack of transparent die-cut stickers with OpenAI gpt-image-1, store every image in Backblaze B2 object storage (no database), and export to Telegram, WhatsApp, Discord, and iMessage.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"ai-image-generation",
"backblaze-b2",
"cloudstorage",
"fastapi",
"gpt-image-1",
"nextjs"
],
"repo": "backblaze-b2-samples/ai-sticker-pack-generator",
"url": "https://github.com/backblaze-b2-samples/ai-sticker-pack-generator",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "lora-training-studio",
"title": "LoRA Training Studio",
"tagline": "Browser-based LoRA fine-tuning for Stable Diffusion, versioned on B2.",
"description": "Browser-based LoRA fine-tuning studio for Stable Diffusion: upload images, caption, train, and download the .safetensors — every artifact (dataset, captions, checkpoints, samples, LoRA) versioned on Backblaze B2.",
"categories": ["ai-ml"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"diffusers",
"diffusion-models",
"fastapi",
"fine-tuning"
],
"repo": "backblaze-b2-samples/lora-training-studio",
"url": "https://github.com/backblaze-b2-samples/lora-training-studio",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "video-semantic-search",
"title": "Video Semantic Search",
"tagline": "Chat with your video: timestamped answers from transcripts, all on B2.",
"description": "Chat with your video: a full-stack TypeScript + Python sample app that transcribes long-form video with Whisper, embeds it, and returns the exact timestamped moments that answer a natural-language question. Backblaze B2 is the sole data store — source, audio, transcript, and vector index — with no separate database.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["backblaze-b2", "cloudstorage", "embeddings", "fastapi", "nextjs", "rag"],
"repo": "backblaze-b2-samples/video-semantic-search",
"url": "https://github.com/backblaze-b2-samples/video-semantic-search",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "docs-to-podcast",
"title": "Docs to Podcast",
"tagline": "Turn PDFs and docs into a two-host AI audio overview, stored on B2.",
"description": "NotebookLM-style podcast generator built on Backblaze B2: turn PDFs and docs into a two-host AI audio overview with OpenAI script generation and TTS, storing sources, transcripts, and episode audio in B2 cloud storage via the S3-compatible API.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["ai-audio", "audio-overview", "backblaze-b2", "cloudstorage", "fastapi", "nextjs"],
"repo": "backblaze-b2-samples/docs-to-podcast",
"url": "https://github.com/backblaze-b2-samples/docs-to-podcast",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "ai-avatar-video-generator",
"title": "AI Avatar Video Generator",
"tagline": "Turn a script and avatar into a talking-head video, stored on B2.",
"description": "Open-source AI avatar video generator: turn a script + avatar into a talking-head video with synced voice. Next.js + FastAPI demo using Backblaze B2 as the sole datastore — no database.",
"categories": ["ai-ml"],
"type": "sample",
"tags": ["ai-avatar", "backblaze-b2", "cloudstorage", "d-id", "fastapi", "heygen"],
"repo": "backblaze-b2-samples/ai-avatar-video-generator",
"url": "https://github.com/backblaze-b2-samples/ai-avatar-video-generator",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "ai-audiobook-generator",
"title": "AI Audiobook Generator",
"tagline": "Convert any manuscript into a chapterized audiobook, stored on B2.",
"description": "Sample app: convert any manuscript into a chapterized audiobook using OpenAI or ElevenLabs TTS, with per-chapter MP3s and an M4B master stored in Backblaze B2 object storage — no database, just a JSON manifest per book",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["audiobook", "backblaze-b2", "cloudstorage", "elevenlabs", "fastapi", "ffmpeg"],
"repo": "backblaze-b2-samples/ai-audiobook-generator",
"url": "https://github.com/backblaze-b2-samples/ai-audiobook-generator",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "gpt-realtime-2-customer-support-voice-agent",
"title": "Customer Support Voice Agent",
"tagline": "Browser-based support voice agent on gpt-realtime-2, calls archived to B2.",
"description": "Browser-based customer-support voice agent on OpenAI gpt-realtime-2 — full-duplex WebRTC voice, mock CRM/helpdesk tool calling, with every call archived to Backblaze B2 (WAV audio, transcript, tool trace, summary, manifest). FastAPI + Next.js B2 sample app.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"customer-support",
"fastapi",
"nextjs",
"object-storage"
],
"repo": "backblaze-b2-samples/gpt-realtime-2-customer-support-voice-agent",
"url": "https://github.com/backblaze-b2-samples/gpt-realtime-2-customer-support-voice-agent",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "gpt-realtime-translate-live-event-interpreter",
"title": "Live Event Interpreter",
"tagline": "Real-time multilingual interpreter for live events, archived to B2.",
"description": "Real-time multilingual interpreter for live events on OpenAI gpt-realtime-translate — one speaker, attendees get translated audio + live captions, every event archived to Backblaze B2 (source audio, transcripts, VTT/SRT). FastAPI + Next.js B2 sample app.",
"categories": ["developer-tools"],
"type": "sample",
"tags": [
"backblaze-b2",
"cloudstorage",
"fastapi",
"gpt-realtime",
"live-captions",
"nextjs"
],
"repo": "backblaze-b2-samples/gpt-realtime-translate-live-event-interpreter",
"url": "https://github.com/backblaze-b2-samples/gpt-realtime-translate-live-event-interpreter",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "genblaze-gen-media-multi-provider-sample",
"title": "Genblaze Multi-Provider Sample",
"tagline": "Genblaze sample generating media across multiple AI providers, stored on B2.",
"description": "A Genblaze sample app that generates media across multiple AI providers from a single pipeline, persisting every output — and its provenance — to Backblaze B2. Demonstrates provider-agnostic gen-media workflows with zero direct S3 code.",
"categories": ["ai-ml", "data-pipelines"],
"type": "sample",
"tags": ["typescript", "genblaze", "ai", "video", "audio", "image"],
"repo": "backblaze-labs/genblaze-gen-media-multi-provider-sample",
"url": "https://github.com/backblaze-labs/genblaze-gen-media-multi-provider-sample",
"icon": "sparkle",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "deep-research-agent-app",
"title": "Deep Research Agent App",
"tagline": "Deep-research AI agent that turns a question into a long-form cited report and…",
"description": "Deep-research AI agent that turns a question into a long-form cited report and caches every source page, screenshot, and report to Backblaze B2 (S3-compatible object storage) as the agent's durable memory. Claude Sonnet 4.6 tool-use loop, Next.js + FastAPI. A Backblaze B2 sample app.",
"categories": ["agent-skills"],
"type": "sample",
"tags": ["ai-agent", "anthropic", "backblaze-b2", "claude", "cloudstorage", "deep-research"],
"repo": "backblaze-b2-samples/deep-research-agent-app",
"url": "https://github.com/backblaze-b2-samples/deep-research-agent-app",
"icon": "bot",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "duckdb-query-in-place",
"title": "Duckdb Query In Place",
"tagline": "Run SQL directly against Parquet, CSV, and JSON files in Backblaze B2 with…",
"description": "Run SQL directly against Parquet, CSV, and JSON files in Backblaze B2 with DuckDB's httpfs extension — query-in-place with no ETL or warehouse, and materialize results back to B2 as Parquet. Next.js + FastAPI sample app.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["backblaze-b2", "cloudstorage", "data-lake", "duckdb", "fastapi", "httpfs"],
"repo": "backblaze-b2-samples/duckdb-query-in-place",
"url": "https://github.com/backblaze-b2-samples/duckdb-query-in-place",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "lance-multimodal-search",
"title": "Lance Multimodal Search",
"tagline": "Multimodal semantic search over images and PDFs with no vector-database…",
"description": "Multimodal semantic search over images and PDFs with no vector-database server: the LanceDB vector store and ANN index live directly on Backblaze B2. Local CLIP embeddings, S3-only.",
"categories": ["developer-tools"],
"type": "sample",
"tags": ["backblaze-b2", "clip", "cloudstorage", "embeddings", "fastapi", "image-search"],
"repo": "backblaze-b2-samples/lance-multimodal-search",
"url": "https://github.com/backblaze-b2-samples/lance-multimodal-search",
"icon": "wrench",
"featured": false,
"languages": ["typescript", "python", "javascript"]
},
{
"id": "supervision-sports-highlights",
"title": "Supervision Sports Highlights",
"tagline": "Computer-vision sports-highlights pipeline: detect, track, clip, annotate, and…",
"description": "Computer-vision sports-highlights pipeline: detect, track, clip, annotate, and AI-summarize the action in a sports video, with Backblaze B2 (S3-compatible) as the sole data store. Built with Roboflow Inference + Supervision, ffmpeg, Claude, FastAPI, and Next.js.",
"categories": ["agent-skills"],
"type": "sample",
"tags": ["backblaze-b2", "claude", "cloudstorage", "computer-vision", "fastapi", "ffmpeg"],
"repo": "backblaze-b2-samples/supervision-sports-highlights",
"url": "https://github.com/backblaze-b2-samples/supervision-sports-highlights",
"icon": "bot",
"featured": false,