vivalence / AI-Zoo

Contributor driven LLM & AI analysis.
1 stars 0 forks source link

LLM & AI Model Compare

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.

Suppliers

Project Structure

Contributing

Adding Data

  1. Models and Suppliers:

    • Navigate to /data.
    • Create or select a supplier directory.
    • 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
      }
      };

Enhancing the App

  1. Pages:
    • For adding or updating pages, go to /src/routes.
    • Create a new .svelte file or update an existing one to incorporate new data or functionalities. Ensure the page is linked properly within the app for navigation.

Visualization and Interaction

  1. Charting:
    • Utilize the charting library integrated into the project to add visual data representations. Enhancements to existing charts or new chart implementations are encouraged.
    • You can learn how to do this by following our guide.

Building and Deployment

Getting Started

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.

Guidelines

Contributors