From 12f0a84c6af8c6c5961ad4c7c690b609be7c2e79 Mon Sep 17 00:00:00 2001 From: Sherlock Xu <65327072+Sherlock113@users.noreply.github.com> Date: Mon, 6 May 2024 09:41:49 +0800 Subject: [PATCH] docs: Add model store reference in the Services doc (#4706) Add model store reference in the Services doc Signed-off-by: Sherlock113 --- docs/source/guides/services.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/guides/services.rst b/docs/source/guides/services.rst index c1b20049410..48b5590fef2 100644 --- a/docs/source/guides/services.rst +++ b/docs/source/guides/services.rst @@ -33,6 +33,10 @@ Here is a Service definition example from :doc:`/get-started/quickstart`. Methods within the class which are defined as accessible HTTP API endpoints are decorated with ``@bentoml.api``. This makes them callable when the Service is deployed. +.. note:: + + This Service downloads a pre-trained model from Hugging Face. It is possible to use your own model within the Service class. For more information, see :doc:`/guides/model-store`. + Test the Service code ---------------------