{% extends "_base.html" %} {% block content %} Settings · Hugging Face

Hugging Face token

Save a write-scope HF token to push OptIQ quants, LoRA adapters, and datasets to the Hub straight from the workflows. The token is encrypted at rest with a key derived from your Lab password.

Add a token

Generate one at huggingface.co/settings/tokens with the Write role.

{% if tokens %}

Saved tokens

{% for t in tokens %}
{{ t.name }}
{{ t.username or 'unknown user' }} {% if t.orgs %} · orgs: {{ t.orgs|join(', ') }}{% endif %} {% if t.scope %} · {{ t.scope }}{% endif %} · added {{ t.created_at[:10] }}
{% endfor %} {% else %}

No tokens saved yet

Add one above and the Quantize / Fine-tune / Dataset workflows will offer a Push to HF button.
{% endif %} {% endblock %}