{% set is_downloading = gateway.models | selectattr('download_state', 'equalto', 'downloading') | list | length > 0 %}
Local models served by llama-swap. Download a model to make it available for inference.
{% if gateway.status.value == 'ok' and gateway.endpoint_url %}The swapboard API could not be reached. Check that it is running and reachable.
{% elif gateway.models %}| Name | Details | Size | Status | Actions |
|---|---|---|---|---|
| {{ model.name }} | {% include "partials/model_badges.html" %} | {% if model.size_bytes %}{{ model.size_bytes | filesizeformat(true) }}{% else %}—{% endif %} | {% if model.download_state.value == 'downloading' %} Downloading {% elif model.present or model.download_state.value == 'completed' %} Available {% elif model.download_state.value == 'failed' %} Failed {% else %} Not downloaded {% endif %} |
{% set is_present = model.present or model.download_state.value == 'completed' %}
{% set in_progress = model.download_state.value == 'downloading' %}
|
No models are configured in llama-swap.
{% endif %}These GGUF files are on disk but no longer referenced by the llama-swap configuration. Removing them frees the space.
| Location | Files | Size | Actions |
|---|---|---|---|
| {{ stray.relative_path }} | {{ stray.files | length }} | {{ stray.size_bytes | filesizeformat(true) }} |
|