Skip to content

Latest commit

 

History

History
73 lines (46 loc) · 2.75 KB

rekaai.md

File metadata and controls

73 lines (46 loc) · 2.75 KB

Reka AI

Reka is an artificial intelligence (AI) startup focused on developing multimodal language models. Their team of researchers and engineers, with backgrounds from DeepMind, Google Brain, and FAIR, aims to build useful AI that empowers organizations and businesses. Reka's models are designed to process and generate text, images, and other forms of data, enabling a wide range of applications in areas such as content creation, customer service, and data analysis. They are committed to making AI accessible, offering both pre-trained models and tools for building custom solutions.

Interface Name

  • rekaai

Example Usage

const { LLMInterface } = require('llm-interface');

LLMInterface.setApiKey({'rekaai': process.env.REKAAI_API_KEY});

async function main() {
  try {
    const response = await LLMInterface.sendMessage('rekaai', 'Explain the importance of low latency LLMs.');
    console.log(response.results);
  } catch (error) {
    console.error(error);
    throw error;
  }
}

main();

Model Aliases

The following model aliases are provided for this provider.

  • default: reka-core
  • large: reka-core
  • small: reka-edge
  • agent: reka-core

Options

The following parameters can be passed through options.

  • frequency_penalty: Details not available, please refer to the LLM provider documentation.
  • max_tokens: Details not available, please refer to the LLM provider documentation.
  • presence_penalty: Details not available, please refer to the LLM provider documentation.
  • seed: Details not available, please refer to the LLM provider documentation.
  • stop: Details not available, please refer to the LLM provider documentation.
  • stream: Details not available, please refer to the LLM provider documentation.
  • temperature: Details not available, please refer to the LLM provider documentation.
  • top_k: Details not available, please refer to the LLM provider documentation.
  • top_p: Details not available, please refer to the LLM provider documentation.
  • use_search_engine: Details not available, please refer to the LLM provider documentation.

Features

  • Streaming

Getting an API Key

Commercial with Free Trial: The Reka AI API is a commercial product but offers a $5.00 credit to get started. A credit card is required.

To get an API key, first create a Reka AI account, then visit the link below.

Reka AI documentation is available here.