Skip to main content
After training a model with Serverless RL, it is automatically available for inference. To send requests to your trained model, you need: The model’s endpoint uses the following schema:
The schema consists of:
  • Your W&B entity’s (team) name
  • The name of the project associated with your model
  • The trained model’s name
  • The training step of the model you want to deploy (this is usually the step where the model performed best in your evaluations)
For example, if your W&B team is named email-specialists, your project is called mail-search, your trained model is named agent-001, and you wanted to deploy it on step 25, the endpoint looks like this:
Once you have your endpoint, you can integrate it into your normal inference workflows. The following examples show how to make inference requests to your trained model using a cURL request or the Python OpenAI SDK.

cURL

OpenAI SDK