November 4, 2023
Features
Disable Authorization for your APIs
You can disable authorization for your APIs, allowing you to create APIs that are accessible to anyone with the URL. You can add authorized=False
to REST APIs, Task Queues, Scheduled Jobs, and ASGI apps.
Task status included in webhook callbacks
Task status is now included in the header field for all webhook callbacks as x-beam-task-status
:
New Examples
Adding multiple API routes per app
You can use ASGI apps along with FastAPI to add multiple API routes to a single deployment. For example, you might want an app with two separate routes: one to train a model, and one for running inference.
Endpoint 1
Endpoint 2
Was this page helpful?