Skip to content

v2.5.0

Latest
Compare
Choose a tag to compare
@frascuchon frascuchon released this 29 Nov 12:28
· 10 commits to develop since this release

🔆 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:

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!

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: v2.4.1...v2.5.0