v0.0.33 🌔
What's Changed
- Update .clabot by @eyurtsev in #269
- Added deployment option to Azure in the documentation by @sowsan in #266
- Bump overall test timeout by @eyurtsev in #273
- Refactor in preparation to add ability to enable/disable individual endpoints by @eyurtsev in #271
- Bump aiohttp in lock file by @eyurtsev in #278
- Moving API Handler to its own file by @eyurtsev in #277
- Add trailing
/
to URLs in README.md by @eyurtsev in #282
Fixes
- Bug Fix: Use deep copy in RemoteClient astream log@eyurtsev in #280
- Enforce trailing slash in remote runnable by @eyurtsev in #287
Features
You can enable / disable which endpoints are exposed. Use enabled_endpoints if you want to make sure to never get a new endpoint when upgrading langserve to a newer verison. See README.md for more details.
# Enable
add_routes(app, chain, enabled_endpoints=("invoke", "batch", "config_hashes"))
# Disable
add_routes(app, chain, disabled_endpoints=["playground"])
Examples
New Contributors
Full Changelog: v0.0.32...v0.0.33