Skip to content

v0.0.33 🌔

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Dec 21:13
· 189 commits to main since this release
483e24f

What's Changed

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"]) 
  • Document Enabling/Disabling Endpoints in README.md by @eyurtsev in #289

Examples

New Contributors

Full Changelog: v0.0.32...v0.0.33