Models

Our baseline models always available for public access are:

model name
reka-edge
reka-flash
reka-core

Other models may be available. The Get Models API allows you to list what models you have available to you.

1from reka.client import Reka
2
3client = Reka()
4print(client.models.get())

This will give output like:

1[
2 {"id": "reka-core"},
3 {"id": "reka-flash"},
4 {"id": "reka-flash-20240226"},
5 {"id": "reka-edge"},
6 {"id": "reka-edge-20240208"}
7]

All of these model IDs can be used as values for the Chat API’s model parameter.

For full listing of models and pricing, see the Reka API Pricing page.