Simplify your AI integration with a single API that connects to all major LLM providers
Connect to all major LLM providers through a single integration
LLM Router eliminates the complexity of managing multiple AI provider integrations. Focus on building great products while we handle the infrastructure.
import { LLMRouter } from '@aqylon/llm-router';
const router = new LLMRouter({
apiKey: 'your-api-key-here'
});
// Use any provider seamlessly
const response = await router.chat({
provider: 'openai', // or 'anthropic', 'gemini'
model: 'gpt-4',
messages: [{
role: 'user',
content: 'Hello, world!'
}]
});
console.log(response.content);Power diverse AI applications with a single integration