Models

Our baseline models always available for public access are:

model name
reka-core
reka-flash
reka-edge (or reka-edge-2603)

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

1from openai import OpenAI
2
3client = OpenAI(
4 base_url="https://api.reka.ai/v1",
5 api_key="YOUR_API_KEY",
6)
7print(client.models.list())

This will give output like:

1[
2 {"id": "reka-core"},
3 {"id": "reka-flash"},
4 {"id": "reka-edge-2603"},
5]

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.