Download Latest Version v2.8.0 source code.tar.gz (317.7 MB)
Email in envelope

Get an email when there's a new version of Argilla

Home / v2.6.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2024-12-18 4.9 kB
v2.6.0 source code.tar.gz 2024-12-18 317.7 MB
v2.6.0 source code.zip 2024-12-18 319.7 MB
Totals: 3 Items   637.4 MB 0

🔆 Release highlights

Push to hub

Export your dataset to the Hugging Face Hub directly from the Argilla UI:

1️⃣ Go to your dataset 2️⃣ Click on Push to Hub 3️⃣ Make sure you include your username or organization and a Hub Access Token with write permissions

Screenshot of the exporting feature

Share your progress

Share your annotation progress on any Argilla dataset with the world!

1️⃣ In your dataset, click on "Share progress" 2️⃣ Open your preferred social media platform 3️⃣ Start a post and paste the copied text 4️⃣ Publish and share with the world!

Screenshot of the sharing feature

Update user data

You can update all information of a user. Here's an example of how to update the role of a user:

:::python
import argilla as rg

client = rg.Argilla(api_url="<ARGILLA_API_URL>", api_key="<ARGILLA_API_KEY>")

user = client.users("username")
user.role = "admin"
user.update()

Change record fields

You can now update the content of record fields.

:::python
import argilla as rg

client = rg.Argilla(api_url="<ARGILLA_API_URL>", api_key="<ARGILLA_API_KEY>")

dataset = client.datasets("my_dataset")
record = next(dataset.records(limit=1))
record.fields["text"] = "this is my updated text"
record.update()

# or several records at once
records = list(dataset.records(...))

for record in records:
    record.fields["text"] = "this is my updated text"

dataset.records.log(records)

Changelog v2.6.0

New Contributors

Full Changelog: https://github.com/argilla-io/argilla/compare/v2.5.0...v2.6.0

Source: README.md, updated 2024-12-18