diff --git a/examples/README.md b/examples/README.md
index 38452d9d5..387840707 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -27,40 +27,40 @@
 |
- User Management |
-  |
-  |
+ Ontologies |
+  |
+  |
Basics |
 |
 |
-
- Data Row Metadata |
-  |
-  |
-
-
- Data Rows |
-  |
-  |
-
Quick Start |
 |
 |
- Ontologies |
-  |
-  |
+ Data Row Metadata |
+  |
+  |
Projects |
 |
 |
+
+ Data Rows |
+  |
+  |
+
+
+ User Management |
+  |
+  |
+
@@ -75,16 +75,16 @@
-
- Export Data |
-  |
-  |
-
Composite Mask Export |
 |
 |
+
+ Export Data |
+  |
+  |
+
Exporting to CSV |
 |
@@ -104,6 +104,11 @@
+
+ Project Setup |
+  |
+  |
+
Queue Management |
 |
@@ -114,11 +119,6 @@
 |
 |
-
- Project Setup |
-  |
-  |
-
Webhooks |
 |
@@ -138,16 +138,16 @@
+
+ PDF |
+  |
+  |
+
Conversational |
 |
 |
-
- Conversational LLM Data Generation |
-  |
-  |
-
Video |
 |
@@ -163,15 +163,25 @@
 |
 |
+
+ Tiled |
+  |
+  |
+
Image |
 |
 |
- Tiled |
-  |
-  |
+ Conversational LLM Data Generation |
+  |
+  |
+
+
+ Conversational LLM |
+  |
+  |
Audio |
@@ -183,16 +193,6 @@
 |
 |
-
- Conversational LLM |
-  |
-  |
-
-
- PDF |
-  |
-  |
-
@@ -213,9 +213,9 @@
 |
- Langchain |
-  |
-  |
+ Import YOLOv8 Annotations |
+  |
+  |
Meta SAM |
@@ -228,9 +228,9 @@
 |
- Import YOLOv8 Annotations |
-  |
-  |
+ Langchain |
+  |
+  |
@@ -252,9 +252,9 @@
 |
- Custom Metrics Basics |
-  |
-  |
+ Custom Metrics Demo |
+  |
+  |
Model Slices |
@@ -262,9 +262,9 @@
 |
- Custom Metrics Demo |
-  |
-  |
+ Custom Metrics Basics |
+  |
+  |
@@ -281,24 +281,24 @@
- Video Predictions |
-  |
-  |
+ Geospatial Predictions |
+  |
+  |
- Image Predictions |
-  |
-  |
+ HTML Predictions |
+  |
+  |
- Text Predictions |
-  |
-  |
+ Conversational LLM Predictions |
+  |
+  |
- HTML Predictions |
-  |
-  |
+ Image Predictions |
+  |
+  |
Conversational Predictions |
@@ -306,14 +306,14 @@
 |
- Conversational LLM Predictions |
-  |
-  |
+ Text Predictions |
+  |
+  |
- Geospatial Predictions |
-  |
-  |
+ Video Predictions |
+  |
+  |
PDF Predictions |
diff --git a/examples/prediction_upload/video_predictions.ipynb b/examples/prediction_upload/video_predictions.ipynb
index 63fe579bd..1157f4441 100644
--- a/examples/prediction_upload/video_predictions.ipynb
+++ b/examples/prediction_upload/video_predictions.ipynb
@@ -325,7 +325,7 @@
},
{
"metadata": {},
- "source": "# Create a Label object by identifying the applicable data row in Labelbox and providing a list of annotations\n\nlabels = []\nannotations_list = [\n checklist_annotation,\n radio_annotation,\n bbox_annotation,\n frame_bbox_with_checklist_subclass,\n point_annotation,\n polyline_annotation,\n global_checklist_annotation,\n global_radio_annotation,\n nested_checklist_annotation,\n nested_radio_annotation,\n text_annotation,\n]\n\nflatten_list_annotations = [\n ann for ann_sublist in annotations_list for ann in ann_sublist\n]\n\nlabels.append(\n lb_types.Label(\n data=lb_types.VideoData(global_key=global_key),\n annotations=flatten_list_annotations,\n ))",
+ "source": "# Create a Label object by identifying the applicable data row in Labelbox and providing a list of annotations\n\nlabels = []\nannotations_list = [\n checklist_annotation,\n radio_annotation,\n bbox_annotation,\n frame_bbox_with_checklist_subclass,\n point_annotation,\n polyline_annotation,\n global_checklist_annotation,\n global_radio_annotation,\n nested_checklist_annotation,\n nested_radio_annotation,\n text_annotation,\n]\n\nflatten_list_annotations = [\n ann for ann_sublist in annotations_list for ann in ann_sublist\n]\n\nlabels.append(\n lb_types.Label(\n data={\"global_key\": global_key},\n annotations=flatten_list_annotations,\n ))",
"cell_type": "code",
"outputs": [],
"execution_count": null