Skip to content

Commit

Permalink
docs: fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherlock113 authored Oct 23, 2024
1 parent 54e7be5 commit 942b486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/guides/clients.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/bentoml/BentoSentenceTransformers>`_, which accepts JSONable input (lists in this case).

.. code-block:: python
Expand Down Expand Up @@ -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 <https://github.com/bentoml/BentoWhisperX>`_, which returns JSONable output (dictionaries in this case).

.. code-block:: python
Expand Down

0 comments on commit 942b486

Please sign in to comment.