diff --git a/support.mdx b/support.mdx
index 34da0ddc3e..545aa89e74 100644
--- a/support.mdx
+++ b/support.mdx
@@ -65,29 +65,29 @@ and the W&B community.
{/* AUTO-GENERATED: featured articles */}
-
Featured articles
+## Featured articles
-W&B Models
+### W&B Models
At the beginning of the training script, call wandb.init with an experiment name. For example: wandb.init(name="my_aweso ...
-[Experiments](/support/models/tags/experiments)
+[Experiments](/support/models/tags/experiments)
You can use W&B Sweeps with custom CLI commands if training configuration passes command-line arguments. In the example ...
-[Sweeps](/support/models/tags/sweeps)
+[Sweeps](/support/models/tags/sweeps)
By default, wandb.init starts a process that syncs metrics in real time to the cloud. For offline use, set two environme ...
-[Experiments](/support/models/tags/experiments) [Environment Variables](/support/models/tags/environment-variables) [Metrics](/support/models/tags/metrics)
+[Experiments](/support/models/tags/experiments) [Environment Variables](/support/models/tags/environment-variables) [Metrics](/support/models/tags/metrics)
When wandb.init() runs in a training script, an API call creates a run object on the servers. A new process starts to st ...
-[Environment Variables](/support/models/tags/environment-variables) [Experiments](/support/models/tags/experiments)
+[Environment Variables](/support/models/tags/environment-variables) [Experiments](/support/models/tags/experiments)
{/* END AUTO-GENERATED: featured articles */}
diff --git a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx
index 88ab904206..89fcf09643 100644
--- a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx
+++ b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx
@@ -3,7 +3,9 @@ title: "How can I delete multiple runs in bulk instead of one at a time?"
keywords: ["Projects", "Runs"]
---
-Use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation:
+From the **Runs** tab in your Workspace, select the checkbox next to each run to delete, then click **Delete**.
+
+Alternatively, use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation:
```python
import wandb
@@ -14,9 +16,8 @@ for run in runs:
if :
run.delete()
```
-
---
{/* AUTO-GENERATED: tab badges */}
[Projects](/support/models/tags/projects)[Runs](/support/models/tags/runs)
-{/* END AUTO-GENERATED: tab badges */}
\ No newline at end of file
+{/* END AUTO-GENERATED: tab badges */}
diff --git a/support/models/tags/projects.mdx b/support/models/tags/projects.mdx
index 4ce54e7d82..c41c77f7af 100644
--- a/support/models/tags/projects.mdx
+++ b/support/models/tags/projects.mdx
@@ -9,7 +9,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2"
To change a project's privacy (visibility): 1. In the W&B App, from any page in the project, click Overview in the proje ...
- Use the public API to delete multiple runs in a single operation:
+ From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ...
To rename a project: Navigate to the Project overview. Click on Edit Project. Note: If the project name is protected, su ...
diff --git a/support/models/tags/runs.mdx b/support/models/tags/runs.mdx
index f7206bfd61..85ec520d99 100644
--- a/support/models/tags/runs.mdx
+++ b/support/models/tags/runs.mdx
@@ -24,7 +24,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2"
Changing the colors of individual runs within a group is not possible. All runs in the same group share a common color.
- Use the public API to delete multiple runs in a single operation:
+ From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ...
To disable logging of system metrics, set _disable_stats to True: