Available 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. Using the Python SDK, it can be accessed as follows:

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

This will give output like:

1[
2 Model(id='reka-core'),
3 Model(id='reka-core-20240415'),
4 Model(id='reka-core-20240501'),
5 Model(id='reka-flash'),
6 Model(id='reka-flash-20240226'),
7 Model(id='reka-edge'),
8 Model(id='reka-edge-20240208'),
9]

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.