Model Versions
The following table lists the availablemodel values for the API:
| Model Values | Description |
|---|---|
split-20251105 | Use the split model snapshot released on November 5, 2025. |
split-latest | Use the latest split model snapshot. |
Why Model Versioning Matters
When integrating the API, you have two options for specifying the model:- Use
split-latestto always get the newest version. This automatically gives you improvements and updates, but results may change when new model versions are released. - Use a specific version (like
split-20251105) to pin to an exact model version. This ensures consistent results over time, but you won’t receive improvements.
Set the Model in the API
When calling the endpoint, you can set the model using themodel parameter.
If you omit the model parameter, the API uses the latest model.
This example shows how to specify a model:
Set the Model with the Python Library
When using the library, you can set the model using themodel parameter in the split() function.
If you omit the model parameter, the library uses the latest split model.
For example, use this code to split a document with the latest split model:
Set the Model with the TypeScript Library
When using the TypeScript library, you can set the model using themodel parameter in the split() method.
If you omit the model parameter, the library uses the latest split model.
For example, use this code to split a document with the latest split model:

