{% extends "base.html" %} {% from "_macros.html" import empty %} {% block title %}Do it again — Video to LLM{% endblock %} {% set problems = problems | default([], true) %} {% set plans = plans | default([], true) %} {% set estimates = estimates | default({}, true) %} {% set durations = durations | default({}, true) %} {% set versions = versions | default([], true) %} {% set descriptions_on = descriptions_on | default(false, true) %} {% set provider = provider | default("none", true) %} {% set budget_limit = budget_limit | default(0, true) %} {% block content %}
This makes a new version. Everything the previous version produced stays exactly where it is, and any collection built on it is untouched.
Describing pictures is off. Choose a model first — nothing here can run until there is something to run it with.
Set one up| Version | What was done | Described | Low confidence | Model | In use |
|---|---|---|---|---|---|
| v{{ version.version }} |
{{ version.scope_label }}
{{ status.format_moment(version.created_at) }}
|
{{ "{:,}".format(version.described) }} | {% if version.low_confidence %} {{ "{:,}".format(version.low_confidence) }} {% else %} none {% endif %} | {{ version.model_id or "—" }} | {% if version.is_active %} In use {% else %} {% endif %} |
Switching which version is in use deletes nothing and rewrites nothing. A collection goes on citing whichever version it pinned, whether or not that is the one in use here.
{% else %} {{ empty("No versions yet.", "There will be one as soon as this video has been processed.") }} {% endif %}