Skip to content

Latest commit

 

History

History
67 lines (40 loc) · 2.09 KB

corcel.md

File metadata and controls

67 lines (40 loc) · 2.09 KB

Corcel

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.

Interface Name

  • corcel

Example Usage

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();

Model Aliases

The following model aliases are provided for this provider.

  • default: gpt-4-turbo-2024-04-09
  • large: gpt-4o
  • small: cortext-lite
  • agent: gemini-pro

Options

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.

Features

  • Streaming

Getting an API Key

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.