Skip to main content
This page lists all supported model sources for the Evaluations API. You can use serverless models, dedicated model inference, or external models from providers like OpenAI, Anthropic, and Google.

Serverless models

Set model_source = "serverless" to use Together’s serverless inference.
Any Together serverless model that supports structured outputs can be used.

Supported models

Example configuration:
Python

Dedicated models

Set model_source = "dedicated" to use your own dedicated endpoint.
A user-launched dedicated endpoint must be created before running evaluations. After launching an endpoint, copy-paste the endpoint ID into the model field.
Example configuration:
Python

External models

Set model_source = "external" to use models from external providers.
External models require an API token from the respective provider. Set the external_api_token parameter with your provider’s API key.

Supported shortcuts

Use these shortcuts in the model field - the API base URL will be determined automatically: Example configuration with shortcut:
Python

Custom base URL

You can also use any OpenAI chat/completions-compatible API by specifying a custom external_base_url:
Python
The external API must be OpenAI chat/completions-compatible.