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.
aimlapi
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();
The following model aliases are provided for this provider.
default
: gpt-3.5-turbo-16klarge
: Qwen/Qwen1.5-72B-Chatsmall
: Qwen/Qwen1.5-0.5B-Chatagent
: gpt-4-32k-0613
default
: text-embedding-ada-002large
: text-embedding-3-largesmall
: text-embedding-3-small
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.
- Streaming
- Embeddings
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.