Argilla — Collaborative Data Annotation for LLMs
Open-source annotation platform for building high-quality fine-tuning and RLHF datasets; integrates with Hugging Face Hub.
Argilla
Argilla is a collaboration platform for AI engineers and domain experts to annotate, curate, and quality-control datasets for fine-tuning and RLHF. It provides a polished web UI for labelling, a Python SDK for programmatic data management, and native Hugging Face Hub sync.
Key Features
- Web UI: label text, images, ranking, rating, span, multi-label tasks
- Custom schemas: define any labelling task with Argilla's dataset settings API
- Human + model-in-the-loop: pre-label with your model, human reviews
- RLHF/DPO: preference ranking and comparison tasks built-in
- Hugging Face Hub: push/pull datasets directly with
rg.Dataset.from_hub() - REST API + Python SDK + webhook integrations
- Self-hostable via Docker; managed via Hugging Face Spaces
Quick Start
import argilla as rg
client = rg.Argilla(api_url="http://localhost:6900", api_key="argilla.apikey")
dataset = rg.Dataset(
name="sentiment-annotation",
settings=rg.Settings(
fields=[rg.TextField(name="text")],
questions=[rg.LabelQuestion(name="label", labels=["positive", "negative", "neutral"])],
),
)
dataset.create()
records = [rg.Record(fields={"text": "Argilla makes annotation easy!"})]
dataset.records.log(records)
Install via ai-supply
npx ai-supply add argilla-dataset-annotation-platform
Curated mirror of the open-source Argilla (Apache-2.0). Get it from the source.
Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.
Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).
The same gate an agent runs before installing (POST /api/v1/trust/argilla-dataset-annotation-platform/check). Click a policy:
Consume Argilla — Collaborative Data Annotation for LLMs programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/argilla-dataset-annotation-platform
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/argilla-dataset-annotation-platform/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add argilla-dataset-annotation-platform
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/argilla-dataset-annotation-platform/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "argilla-dataset-annotation-platform" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.