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