Explore and compare AI models
Standardized information about capabilities, context windows, and pricing across proprietary and open models.
Key Features
Comprehensive Directory
Access detailed information on hundreds of AI models with standardized metrics for easy comparison.
Side-by-Side Comparison
Compare multiple AI models based on capabilities, context window sizes, costs, and other essential metrics.
Advanced Filtering
Find the perfect model for your needs with our powerful filtering options based on specific requirements.
Use in your projects
The website is built on the aimodels package — a comprehensive collection of AI model specifications available for both JavaScript/TypeScript and Python. You can use it too.
Data about models from major providers (OpenAI, Anthropic, xAI, etc.)
Compare capabilities, context windows, and pricing in a standardized format
Intuitive fluent API for filtering models by capabilities
Regular updates with new models and features
import { models } from 'aimodels';
// Find models by capability using fluent API
const chatModels = models.canChat();
const visionModels = models.canSee();
// Chain methods for more specific filtering
const smartVisionModels = models.canChat().canReason().canSee();
// Find models by provider
const openaiModels = models.fromProvider('openai');
// Find models by context window
const largeContextModels = models.withMinContext(32768);
// Find specific model
const model = models.id('gpt-4');
console.log(model?.context.total); // Context window size