Patch releases
BentoML now provides a new diffusers integration, bentoml.diffusers_simple
.
This introduces two integration for stable_diffusion
and stable_diffusion_xl
model.
import bentoml
# Create a Runner for a Stable Diffusion model
runner = bentoml.diffusers_simple.stable_diffusion.create_runner("CompVis/stable-diffusion-v1-4")
# Create a Runner for a Stable Diffusion XL model
runner_xl = bentoml.diffusers_simple.stable_diffusion_xl.create_runner("stabilityai/stable-diffusion-xl-base-1.0")
General bug fixes and documentation improvement
What's Changed
- docs: Add the Overview and Quickstarts sections by @Sherlock113 in #4088
- chore(type): makes ModelInfo mypy-compatible by @aarnphm in #4094
- feat(store): update annotations by @aarnphm in #4092
- docs: Fix some relative links by @Sherlock113 in #4097
- docs: Add the Iris quickstart doc by @Sherlock113 in #4096
- docs: Add the yolo quickstart by @Sherlock113 in #4099
- docs: Code format fix by @Sherlock113 in #4101
- fix: respect environment during
bentoml.bentos.build
by @aarnphm in #4081 - docs: replaced deprecated save to save_model in pytorch.rst by @EgShes in #4102
- fix: Make the install command shorter by @frostming in #4103
- docs: Update the BentoCloud Build doc by @Sherlock113 in #4104
- docs: Add quickstart repo link and move torch import in Yolo by @Sherlock113 in #4106
- docs: fix typo by @zhangwm404 in #4108
- docs: fix typo by @zhangwm404 in #4109
- fix: calculate Pandas DataFrame batch size correctly by @judahrand in #4110
- fix(cli): fix CLI output to BentoCloud by @Haivilo in #4114
- Fix sklearn example docs by @jianshen92 in #4121
- docs: Add the BentoCloud Deployment creation and update page property explanations by @Sherlock113 in #4105
- fix: disable pyright for being too strict by @frostming in #4113
- refactor(cli): change prompt of cloud cli to unify Yatai and BentoCloud by @Haivilo in #4124
- fix(cli): change model to lower case by @Haivilo in #4126
- chore(ci): remove codestyle jobs by @aarnphm in #4125
- fix: don't pass column names twice by @judahrand in #4120
- feat: SSE (Experimental) by @jianshen92 in #4083
- docs: Restructure the get started section in BentoCloud docs by @Sherlock113 in #4129
- docs: change monitoring image by @Haivilo in #4133
- feat: Rust gRPC client by @aarnphm in #3368
- feature(framework): diffusers lora and textual inversion support by @larme in #4086
- feat(buildx): support for attestation and sbom with buildx by @aarnphm in #4132
New Contributors
- @EgShes made their first contribution in #4102
- @zhangwm404 made their first contribution in #4108
Full Changelog: v1.1.1...v1.1.2