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.5.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2024-11-29 6.0 kB
v2.5.0 source code.tar.gz 2024-11-29 317.4 MB
v2.5.0 source code.zip 2024-11-29 319.4 MB
Totals: 3 Items   636.9 MB 0

🔆 Release highlights

Webhooks

You can now create and manage webhooks to support your workflows!

Webhooks allow you to submit real-time information to other applications whenever a specific event occurs within Argilla. Here's an example of how you can set up a webhook in Argilla:

:::python

import argilla as rg

@rg.webhook_listener("record.completed")
async def record_completed(record: rg.Record, **kwargs):
    print (f"Record {record.id} has been completed")

Visit the Argilla documentation for more information.

A redesigned home page

Captura de pantalla 2024-11-29 a las 12 49 32

Argilla's home page has been redesigned to provide a better user experience. The new home page now shows a new dataset card view, which provides a better overview of the datasets and annotation progress.

Python 3.13 and Pydantic v2 support

The Argilla server (and SDK) now supports Python 3.13 and Pydantic 2.0.0. This means that you can now install and use both SDK and server with Python 3.13 in the same Python environment!

:::bash
pip install argilla
pip install argilla-server

python -m argilla_server

Other improvements

  • We've added a high contrast theme to help users with visual impairments. To change the theme go to "My settings" and choose your preferred theme. Thanks @paulbauriegel for this! 🎉
  • You can select the language that you'd like to display in the Argilla UI, also from the "My settings" page. Your language isn't there? Visit the Argilla documentation to learn how you can add yours.

Changelog v2.5.0

New Contributors

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

Source: README.md, updated 2024-11-29