v6

latestOpenAPI 3.1.0MIT2026-08-08196464802.1 KB
RL

List supported models

Returns the models supported by the RL service and their limits for training/sampling operations.

get/rl/supported-models

Response

List of supported RL models

Example response

{
  "data": [
    {
      "base_model": "Qwen/Qwen3-0.6B",
      "trainer_config": {
        "full": {
          "max_batch_size": 512,
          "max_seq_length": 40960
        },
        "lora": {
          "max_batch_size": 512,
          "max_seq_length": 40960,
          "max_rank": 64
        }
      },
      "generator_config": {
        "context_length": 40960,
        "sampling_defaults": {
          "n": 1,
          "max_tokens": 512,
          "temperature": 1,
          "logprobs": 1
        }
      }
    }
  ]
}