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.
rekaai
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();
The following model aliases are provided for this provider.
default
: reka-corelarge
: reka-coresmall
: reka-edgeagent
: reka-core
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.
- Streaming
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.