For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DiscordGet API Key
  • Getting Started
    • Overview
    • Quickstart
    • Errors
    • Pricing
  • Chat
    • Overview
    • Chat with Image, Video, and Audio
    • Function Calling
    • Models
  • Vision
    • Overview
    • Rate Limits
    • Pricing
    • MCP Server
    • Video Management
    • Video Group Management
    • Video Search
    • Video QA
    • Clip Generation
    • Metadata Tagging
    • Image Management
    • Image Search
  • Research
    • Overview
    • Streaming
    • Reasoning Steps
    • Web Search
    • Structured Output
    • Parallel Thinking
    • Best Practices
    • Errors
    • Examples
  • Speech
    • Overview
    • Audio Transcription
    • Speech Translation
    • Speech-to-Speech Translation
  • Resources
    • FAQs
    • Changelog
    • System Status
LogoLogo
DiscordGet API Key
Chat

Models

Was this page helpful?
Previous

Chat

Next
Built with

Our baseline models always available for public access are:

model name
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-flash"},
3 {"id": "reka-edge-2603"},
4]

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.