{% extends "admin/base.html" %} {% block title %}Manage Server: {{ server.name }}{% endblock %} {% block header_title %}Manage Models on {{ server.name }}{% endblock %} {% block content %}
← Back to Server List
{% if server.server_type == 'ollama' %}

Pull Model

Pulling a model can take several minutes depending on its size and your network speed. The page will reload when the process is complete.

{% else %}

Model Management

Model management (pulling, deleting, etc.) is not supported for vLLM servers through this UI. Models for vLLM servers are configured when the vLLM server is launched. You can refresh the model list from the main server management page.
{% endif %}

Available Models

{% if server.available_models %} {% for model in server.available_models %} {% endfor %} {% else %} {% endif %}
Model Name Size Modified Actions
{{ model.name }} {% if model.size > 0 %}{{ (model.size / 1024**3) | round(2) }} GB{% else %}N/A{% endif %} {{ model.modified_at[:19].replace('T', ' ') }} {% if server.server_type == 'ollama' %}
{% else %} No actions available {% endif %}
No models found on this server. This might be because the server is offline or the initial model scan failed. Try refreshing from the main Server Management page.
{% endblock %}