Astrodyne

Choose an available model

Your account can call a specific set of models. Ask for one of those and Astrodyne runs exactly that model.

List what you can call

curl
curl https://api.astrodyne.ai/v1/models \
  -H "Authorization: Bearer $ASTRODYNE_API_KEY"

The response is a list of model objects, each with an id. That id is the exact string to put in the model field of a request. The same list appears in Models in the console.

Availability is per account
Two accounts can see different lists. During the invite-only rollout an account may be restricted to a subset of the catalog, and an individual API key can be restricted further still. GET /v1/models with a specific key always returns exactly what that key may use.

Picking one

Prices per million tokens are on each card in Models. Changing model is a one-line change: the key, the base URL and the rest of your code stay the same.

Astrodyne does not substitute

The model you name is the model that runs. Astrodyne does not silently pick a cheaper or different one. Asking for a model your account cannot call returns 403 model_not_allowed; asking for one that does not exist returns 404 model_not_found.