Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bug: module 'bentoml' has no attribute 'build' #4689

Merged
merged 1 commit into from Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/bentoml/__init__.py
Expand Up @@ -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
Expand Down Expand Up @@ -234,6 +235,7 @@ def __getattr__(name: str) -> Any:
"delete",
"import_bento",
"export_bento",
"build",
"load",
"push",
"pull",
Expand Down