Argilla

Latest version: v2.8.0

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 22

2.0.1

What's Changed

🧹 Patch release of bug fixes and minor documentation and messaging improvements. Enjoy your summer while we change the world in `v2.1.0`.

Fixed

- Fixed error when creating optional fields. ([5362](https://github.com/argilla-io/argilla/pull/5362))
- Fixed error creating integer and float metadata with `visible_for_annotators`. ([5364](https://github.com/argilla-io/argilla/pull/5364))
- Fixed error when logging records with `suggestions` or `responses` for non-existent questions. ([5396](https://github.com/argilla-io/argilla/pull/5396) by maxserras)
- Fixed error from conflicts in testing suite when running tests in parallel. ([5349](https://github.com/argilla-io/argilla/commit/1119b164d0623170d44561c6b75d439d2dc96bd0))
- Fixed error in response model when creating a response with a `None` value. ([5343](https://github.com/argilla-io/argilla/commit/9e3705061a2dd88a7852288d9f6fd1aaeaa9b062))

Changed

- Changed `from_hub` method to raise an error when a dataset with the same name exists. ([5258](https://github.com/argilla-io/argilla/pull/5358))
- Changed `log` method when ingesting records with no known keys to raise a descriptive error. ([5356](https://github.com/argilla-io/argilla/pull/5356))
- Changed `code snippets` to add new datasets ([5395](https://github.com/argilla-io/argilla/pull/5395))

Added

- Added Google Analytics to the documentation site. ([5366](https://github.com/argilla-io/argilla/pull/5366))
- Added frontend skeletons to progress metrics to optimise load time and improve user experience. ([5391](https://github.com/argilla-io/argilla/pull/5391))
- Added documentation in methods in API references for the Python SDK. ([5400](https://github.com/argilla-io/argilla/commit/a6fc0117bc4923aec0be80df27eb79ddf3f007c7))


**Full Changelog**: https://github.com/argilla-io/argilla/compare/v2.0.0...v2.0.1

2.0

- An owner or an admin can set the minimum number of submitted responses expected for each record.
- When a record reaches that threshold, its status changes to `complete` and it's automatically removed from the pending queue of all team members.
- A dataset is 100% complete when all records have the status `complete`.

By default, the minimum submitted answers is 1, but you can create a dataset with a different value:
python
settings = rg.Settings(
guidelines="These are some guidelines.",
fields=[
rg.TextField(
name="text",
),
],
questions=[
rg.LabelQuestion(
name="label",
labels=["label_1", "label_2", "label_3"]
),
],
distribution=rg.TaskDistribution(min_submitted=3)
)


You can also change the value of an existing dataset as long as it has no responses. You can do this from the `General` tab inside the Dataset Settings page in the UI or from the SDK:
python
import argilla as rg

client = rg.Argilla(...)

dataset = client.datasets("my_dataset")

dataset.settings.distribution.min_submitted = 4

dataset.update()


To learn more, check our guide on how to [distribute the annotation task](https://argilla-io.github.io/argilla/latest/how_to_guides/distribution/).

Easily deploy in Hugging face Spaces
We've streamlined the deployment of an Argilla Space in the Hugging Face Hub. Now, there's no need to manage users and passwords. Follow these simple steps to create your Argilla Space:
- Select the Argilla template.
- Choose your hardware and persistent storage options (if you prefer others than the recommended ones).
- If you are creating a space inside an organization, enter your Hugging Face Hub username under `username` to get the `owner` role.
- Leave `password` empty if you'd like to use Hugging Face OAuth to sign in to Argilla.
- Select if the space will be public or private.
- `Create Space` ! 🎉
Now you and your team mates can simply sign in to Argilla using Hugging Face OAuth!
Learn more about [deploying Argilla in Hugging Face Spaces](https://argilla-io.github.io/argilla/latest/getting_started/quickstart).


https://github.com/user-attachments/assets/a57a8712-ef4e-45f3-8c38-7bbc47adf02b


New Contributors

* bikash119 made their first contribution in https://github.com/argilla-io/argilla/pull/5294

**Full Changelog**: https://github.com/argilla-io/argilla/compare/v1.29.1...v2.0.0

2.0.0

🔆 Release highlights
One `Dataset` to rule them all
The main difference between Argilla 1.x and Argilla 2.x is that we've converted the previous dataset types tailored for specific NLP tasks into a single highly-configurable `Dataset` class.

With the new `Dataset` you can combine multiple fields and question types, so you can adapt the UI for your specific project. This offers you more flexibility, while making Argilla easier to learn and maintain.

> [!IMPORTANT]
> If you want to continue using your legacy datasets in Argilla 2.x, you will need to convert them into v2 `Dataset`'s as explained in this [migration guide](https://argilla-io.github.io/argilla/latest/how_to_guides/migrate_from_legacy_datasets/). This includes: `DatasetForTextClassification`, `DatasetForTokenClassification`, and `DatasetForText2Text`.
>
> `FeedbackDataset`'s do not need to be converted as they are already compatible with the Argilla v2 format.

New SDK & documentation
We've redesigned our SDK with the idea to adapt it to the new single `Dataset` and `Record` classes and, most importantly, improve the user and developer experience.

The main goal of the new design is to make the SDK easier to use and learn, making it simpler and faster to configure your dataset and get it up and running.

Here's an example of what creating a `Dataset` looks like:
python
import argilla as rg
from datasets import load_dataset

log to the Argilla client
client = rg.Argilla(
api_url="<api_url>",
api_key="<api_key>"
headers={"Authorization": f"Bearer {HF_TOKEN}"}
)

configure dataset settings
settings = rg.Settings(
guidelines="Classify the reviews as positive or negative.",
fields=[
rg.TextField(
name="review",
title="Text from the review",
use_markdown=False,
),
],
questions=[
rg.LabelQuestion(
name="my_label",
title="In which category does this article fit?",
labels=["positive", "negative"],
)
],
)

create the dataset in your Argilla instance
dataset = rg.Dataset(
name=f"my_first_dataset",
settings=settings,
client=client,
)
dataset.create()

get some data from the hugging face hub and load the records
data = load_dataset("imdb", split="train[:100]").to_list()
dataset.records.log(records=data, mapping={"text": "review"})


To learn more about this SDK and how it works, check out our revamped documentation: https://argilla-io.github.io/argilla/latest

We made this new documentation site from scratch, applying [the Diátaxis framework](https://diataxis.fr/) and UX principles with the hope to make this version cleaner and the information easier to find.

New UI layout
We have also redesigned part of our UI for Argilla 2.0:
- We've redistributed the information in the Home page.
- Datasets don't have Tasks, but Questions.
- A clearer way to see your team's progress over each dataset.
- Annotation guidelines and your progress are now accessible at all times within the dataset page.
- Dataset pages also have a new flexible layout, so you can change the size of different panels and expand or collapse the guidelines and progress.
- `SpanQuestion`'s are now supported in the bulk view.

https://github.com/user-attachments/assets/2d959c8a-b4ac-446b-8326-bd66daa28816

Automatic task distribution

2.0.0rc2

What's Changed
* Docs: new review UI guide by nataliaElv in https://github.com/argilla-io/argilla/pull/5083
* [ENHANCEMENT] ci: Review event triggers to reduce CI runs by frascuchon in https://github.com/argilla-io/argilla/pull/5075
* docs: fix minor warning by sdiazlor in https://github.com/argilla-io/argilla/pull/5089
* 🔥 Fix reorder labels by damianpumar in https://github.com/argilla-io/argilla/pull/5084
* ✨ Refactor CSS by damianpumar in https://github.com/argilla-io/argilla/pull/5085
* ✨ Fix issue on iterator by damianpumar in https://github.com/argilla-io/argilla/pull/5099
* [ENHANCEMENT] CI: Allow to publish hidden version for docs/ branches by frascuchon in https://github.com/argilla-io/argilla/pull/5088
* [ENHANCEMENT / BUGFIX] CI: publish version docs on tag creation by frascuchon in https://github.com/argilla-io/argilla/pull/5092
* [DOCS] swap extra_headers for headers in updated sdk docs by burtenshaw in https://github.com/argilla-io/argilla/pull/5100
* docs: change references slack by sdiazlor in https://github.com/argilla-io/argilla/pull/5101
* [BUGFIX] remove name as default description in settings models by burtenshaw in https://github.com/argilla-io/argilla/pull/5081
* 🐛 Fix banner by damianpumar in https://github.com/argilla-io/argilla/pull/5127
* ✨ Improve docs by damianpumar in https://github.com/argilla-io/argilla/pull/5094
* change: delete on cascade responses when associated user is deleted by jfcalvo in https://github.com/argilla-io/argilla/pull/5126
* ✨ Add LaTex support by damianpumar in https://github.com/argilla-io/argilla/pull/5129
* docs: small clarifications by sdiazlor in https://github.com/argilla-io/argilla/pull/5131
* fix: UI - scrollable records in bulk view by leiyre in https://github.com/argilla-io/argilla/pull/5143
* fix: copy the dataset name by clicking the copy button by leiyre in https://github.com/argilla-io/argilla/pull/5142
* [ENHANCEMENT] `argilla`: simplify structure for flatten records to list by frascuchon in https://github.com/argilla-io/argilla/pull/5137
* [ENHANCEMENT] `argilla`: define argilla-v1 as optional dependency by frascuchon in https://github.com/argilla-io/argilla/pull/5120
* refactor: improve get pop issues by sdiazlor in https://github.com/argilla-io/argilla/pull/5135
* [BUGFIX] `argilla`: normalize records when exporting flatten by frascuchon in https://github.com/argilla-io/argilla/pull/5138
* [BUGFIX] `argilla`: support read draft response models without values by frascuchon in https://github.com/argilla-io/argilla/pull/5124
* [REFACTOR] Redefine some property methods by frascuchon in https://github.com/argilla-io/argilla/pull/5114
* fix: conditional checking SQLite connection so connection configuration is correctly executed by jfcalvo in https://github.com/argilla-io/argilla/pull/5149
* chore: update SQLAlchemy dependencies by jfcalvo in https://github.com/argilla-io/argilla/pull/5154
* [ENHANCEMENT/REFACTOR] `argilla`: lazy resolution for dataset workspaces by frascuchon in https://github.com/argilla-io/argilla/pull/5152
* [REFACTOR]: `argilla`: Rename `status` to `response.status` for filtering using the SDK by frascuchon in https://github.com/argilla-io/argilla/pull/5145
* [ENHANCEMENT] [REFACTOR] optimise and refactor SDK ingestion methods by burtenshaw in https://github.com/argilla-io/argilla/pull/5107
* [BUGFIX] `argilla-server`: `await` on similarity search when filtering response values without user by frascuchon in https://github.com/argilla-io/argilla/pull/5159
* [BUGFIX] rename optional deps v1 by frascuchon in https://github.com/argilla-io/argilla/pull/5164
* [REVERT] Rename `sdk-v1` to `legacy` by frascuchon in https://github.com/argilla-io/argilla/pull/5168
* [RELEASES] 2.0.0rc2 by frascuchon in https://github.com/argilla-io/argilla/pull/5160


**Full Changelog**: https://github.com/argilla-io/argilla/compare/v2.0.0rc1...v2.0.0rc2

2.0.0rc1

**Full Changelog**: https://github.com/argilla-io/argilla/compare/v1.29.0...v2.0.0rc1

1.29.1

What's Changed
* 🙏 Update community link for v1.29.1 by damianpumar in https://github.com/argilla-io/argilla/pull/5257
* bug: 5123 metrics by sdiazlor in https://github.com/argilla-io/argilla/pull/5245


**Full Changelog**: https://github.com/argilla-io/argilla/compare/v1.29.0...v1.29.1

Page 3 of 22

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.