From 942b48665f4fd8228dea2e10f4bb3edbb25c81e2 Mon Sep 17 00:00:00 2001 From: Sherlock Xu <65327072+Sherlock113@users.noreply.github.com> Date: Wed, 23 Oct 2024 08:29:21 +0800 Subject: [PATCH] docs: fix links --- docs/source/guides/clients.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/guides/clients.rst b/docs/source/guides/clients.rst index 444769261aa..a06958472a0 100644 --- a/docs/source/guides/clients.rst +++ b/docs/source/guides/clients.rst @@ -152,7 +152,7 @@ You can easily handle JSONable data input and JSON output with BentoML's HTTP cl For input, when you send data that can be serialized to JSON (for example, dictionaries, lists, strings, and numbers), you simply pass it as arguments to the client method corresponding to your Service API. -The following code comes from the Service ``SentenceEmbedding`` of the :doc:`/use-cases/embeddings/sentence-transformer` use case, which accepts JSONable input (lists in this case). +The following code comes from the Service ``SentenceEmbedding`` of `this example project `_, which accepts JSONable input (lists in this case). .. code-block:: python @@ -193,7 +193,7 @@ To create a client to handle JSONable input for Services like ``SentenceEmbeddin For output, when a BentoML Service returns JSON data, the client automatically deserializes this JSON into a Python data structure (like a dictionary or a list, depending on the JSON structure). -The following code comes from the Service ``WhisperX`` of the :doc:`/use-cases/audio/whisperx` use case, which returns JSONable output (dictionaries in this case). +The following code comes from the Service ``WhisperX`` of this `example project `_, which returns JSONable output (dictionaries in this case). .. code-block:: python