Corcel is a platform that leverages decentralized AI to offer a variety of tools and applications. It provides access to cutting-edge AI models for tasks like web searching, image generation from text prompts, and interacting with advanced language models. Corcel is powered by a range of both closed and open-source models, ensuring users have access to the latest AI capabilities. The platform boasts a user-friendly interface and is available for free.
corcel
const { LLMInterface } = require('llm-interface');
LLMInterface.setApiKey({'corcel': process.env.CORCEL_API_KEY});
async function main() {
try {
const response = await LLMInterface.sendMessage('corcel', '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
: gpt-4-turbo-2024-04-09large
: gpt-4osmall
: cortext-liteagent
: gemini-pro
The following parameters can be passed through options
.
max_tokens
: 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_p
: Details not available, please refer to the LLM provider documentation.
- Streaming
Commercial with Free Trial: The Corcel API is a commercial product but offers a $1 credit to get started. No credit card is required initially.
To get an API key, first create a Corcel account, then visit the link below.
Corcel documentation is available here.