From a124df5a3b30fa2b3f938b900fde8840011d3906 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Wed, 24 Apr 2024 20:15:39 +0800 Subject: [PATCH] fix: bug: module 'bentoml' has no attribute 'build' (#4689) Fixes #4687 Signed-off-by: Frost Ming --- src/bentoml/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bentoml/__init__.py b/src/bentoml/__init__.py index 9364959fc0c..2eb7e05066a 100644 --- a/src/bentoml/__init__.py +++ b/src/bentoml/__init__.py @@ -44,6 +44,7 @@ from ._internal.utils.http import Cookie # Bento management APIs +from .bentos import build from .bentos import delete from .bentos import export_bento from .bentos import get @@ -234,6 +235,7 @@ def __getattr__(name: str) -> Any: "delete", "import_bento", "export_bento", + "build", "load", "push", "pull",