-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reorganize the new SDK package (#4337)
* feat: reorganize the new SDK package Signed-off-by: Frost Ming <[email protected]> * feat: export types Signed-off-by: Frost Ming <[email protected]> * fix: sort imports Signed-off-by: Frost Ming <[email protected]> * fix: use real types Signed-off-by: Frost Ming <[email protected]> * fixup Signed-off-by: Frost Ming <[email protected]> * feat: expose clients Signed-off-by: Frost Ming <[email protected]>
- Loading branch information
Showing
48 changed files
with
500 additions
and
433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
8 changes: 5 additions & 3 deletions
8
src/bentoml_io/server/__init__.py → src/_bentoml_impl/server/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
""" | ||
bentoml_io.server | ||
~~~~~~~~~~~~~~~~~ | ||
_bentoml_impl.server | ||
~~~~~~~~~~~~~~~~~~~~ | ||
A reference implementation of serving a BentoML service. | ||
This will be eventually migrated to Rust. | ||
""" | ||
from ..factory import Service as Service | ||
from .serving import serve_http | ||
|
||
__all__ = ["serve_http"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.