{% extends "base.html" %} {% block title %}AIMC โ€” Foundation Model Catalog{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Foundation Model Catalog

{{ models|length }} models โ€” IL suitability, VRAM, cost, and air-gap compatibility.

← Back to AIMC
{# Filters #}
{% for m in models %}

{{ m.name }}

{{ '๐Ÿ”’ Air-Gap' if m.air_gap_ready else 'โ˜ Cloud' }}
{{ m.provider }} — {{ m.family }}
Context Window{{ "{:,}".format(m.context_window) }} tokens
VRAM (fp16){{ m.vram_gb if m.vram_gb > 0 else 'Managed' }} {% if m.vram_gb > 0 %}GB{% endif %}
Cost / 1K tokens${{ "%.5f"|format(m.cost_per_1k_tokens) if m.cost_per_1k_tokens > 0 else 'Free (local)' }}
IL Suitability {% for il in m.il_suitability %} IL{{ il }} {% endfor %}
{% if m.notes %}
{{ m.notes }}
{% endif %} {% if m.quantization_options %}
Quant: {{ m.quantization_options | join(' ยท ') }}
{% endif %}
{% endfor %}
{% endblock %}