From 31ce75996f359e1806abee8cdf30851384fc8579 Mon Sep 17 00:00:00 2001 From: Joram Millenaar <56999328+JoramMillenaar@users.noreply.github.com> Date: Tue, 3 Dec 2024 02:49:26 -0800 Subject: [PATCH] The smallest typo fix for webgpu.md (#1068) Came across this while reading the documentation. Figured I'd fix it real quick. --- docs/source/guides/webgpu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/guides/webgpu.md b/docs/source/guides/webgpu.md index d4f39f324..9c3009671 100644 --- a/docs/source/guides/webgpu.md +++ b/docs/source/guides/webgpu.md @@ -25,7 +25,7 @@ const extractor = await pipeline( "feature-extraction", "mixedbread-ai/mxbai-embed-xsmall-v1", { device: "webgpu" }, -}); +); // Compute embeddings const texts = ["Hello world!", "This is an example sentence."];