🔆 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
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!
Update user data
You can update all information of a user. Here's an example of how to update the role of a user:
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.
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
- [ENHANCEMENT]
argilla server
: Return users on dataset progress by @frascuchon in #5701 - [CI] Update base docker image by @frascuchon in #5705
- 🔥 Fix highlight on bulk by @damianpumar in #5698
- 🔥 Improve plugins loaders by @damianpumar in #5697
- fix: 🐛 Send visible_options prop only when the questions has more… by @damianpumar in #5716
- [FEATURE] UI - update dataset list by @leiyre in #5684
- [Docs] configure issue form by @sdiazlor in #5703
- Assign field to a span question by @leiyre in #5717
- [FEATURE]: Adding Functionality To Update Users by @sean-hickey-wf in #5615
- [CI] Fix argilla-frontend build by adding the
package-lock.json
file by @frascuchon in #5731 - fix: UI - use
last_activity_at
in the dataset list by @leiyre in #5741 - [CI] fix install deps using python.3.13 by @frascuchon in #5745
- [BUGFIX] prevent errors when updating user by @frascuchon in #5742
- [BUGFIX]
argilla
: prevent enum literal validation errors by @frascuchon in #5679 - 🎉 Improve styles file weight by @leiyre in #5724
- [FEATURE] Add support to update record fields by @frascuchon in #5685
- 🚑 feat/check version by @damianpumar in #5738
- [BUGFIX] [TESTS] Remove custom isoformat parsing and let pydantic do the work by @frascuchon in #5752
- [BUGFIX] Fetch dataset setting when iterate
client.datasets
by @frascuchon in #5753 - [BUGFIX]
argilla
: review datasest import with new export flow by @frascuchon in #5756 - [FEATURE-BRANCH] feat: dataset export to the Hub by @jfcalvo in #5730
- Feat/improve export hover by @damianpumar in #5764
- [CHORE] Add missing fixed entries by @frascuchon in #5765
- ✨ Add share component by @damianpumar in #5727
- [RELEASES] v2.6.0 by @jfcalvo in #5762
New Contributors
- @sean-hickey-wf made their first contribution in #5615
Full Changelog: v2.5.0...v2.6.0