Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 2.31 KB

aimlapi.md

File metadata and controls

75 lines (46 loc) · 2.31 KB

AIMLAPI

AIMLAPI.com is a versatile platform that provides developers with streamlined access to over 200 AI models through a single API. It simplifies the integration of AI capabilities into applications, offering a diverse range of models from industry leaders like OpenAI, Anthropic, and Stability AI. With a focus on quality, stability, and affordability, AIMLAPI.com caters to developers seeking efficient AI solutions for their projects.

Interface Name

  • aimlapi

Example Usage

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

LLMInterface.setApiKey({'aimlapi': process.env.AIMLAPI_API_KEY});

async function main() {
  try {
    const response = await LLMInterface.sendMessage('aimlapi', '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-3.5-turbo-16k
  • large: Qwen/Qwen1.5-72B-Chat
  • small: Qwen/Qwen1.5-0.5B-Chat
  • agent: gpt-4-32k-0613

Embeddings Model Aliases

  • default: text-embedding-ada-002
  • large: text-embedding-3-large
  • small: text-embedding-3-small

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.
  • 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
  • Embeddings

Getting an API Key

Free Tier Available: The AIMLAPI API offers a free tier and commercial accounts. A credit card is not required for the free tier.

To get an API key, first create an AIMLAPI account, then visit the link below.

AIMLAPI documentation is available here.