LLM & AI Model Compare is a contributor-driven platform for comparing language models and AI technologies across various suppliers. Built with Svelte, it provides an interactive way to explore and understand the differences in cost, speed, and quality of AI models.
/data
: Contains supplier directories and model details./src
: Source code for the Svelte app, including routes (pages) and components.Models and Suppliers:
/data
.Add a model.js
file for the model you're documenting, using the following structure:
export default {
id: 'Model_ID',
model: 'Model_Name',
source: 'https://example.com',
cost: {
currency: 'USD',
per_million_tokens_input: X,
per_million_tokens_output: Y
},
speed: {
tokens_per_second: Z,
latency_first_token_ms: A
},
technical: {
token_window: B
},
quality: {
some_metric: C
}
};
/src/routes
..svelte
file or update an existing one to incorporate new data or functionalities. Ensure the page is linked properly within the app for navigation.To contribute, fork this repository, make your changes, and submit a pull request. Ensure your additions or updates follow the project's structure and standards.