argilla-io / argilla-python

The Argilla API python SDK

Home Page:https://argilla-io.github.io/argilla-python/dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

argilla-sdk

The argilla-sdk is an experimental project to rebuild Argilla's python client in a simpler and friendlier way. The goal is to have a minimal set of core features that are easy to use and understand, but also contribute to feedback task that build quality data.

!!! warning This project is still in development and is not yet ready for production use.

Installation

Since this package is not yet published on PyPi, you can install it directly from the repository:

pip install git+https://github.com/argilla-io/argilla-python.git

Usage

To use the client, you need to import the Argilla class and instantiate it with the API URL and API key. You can use this SDK with any stable release of argilla server >= 1.27.

import argilla_sdk as rg

client = rg.Argilla(api_url="http://localhost:6900", api_key="argilla.apikey")

Developer documentation

If you want to contribute to the development of the SDK, you can follow the instructions below.

Installation

To install the development dependencies, run the following command:

# install pdm https://github.com/pdm-project/pdm
pip install pdm

# install the package in editable mode
pip install -e .

# install the development dependencies with pdm
pdm install --dev

Generating Documentation

To generate the docs you will need to install the development dependencies, and run the following command to create the development server with mkdocs:

mkdocs serve

You will find the built documentation in http://localhost:8000/argilla-python/.

The docs will be deployed for pull request branches automatically.

About

The Argilla API python SDK

https://argilla-io.github.io/argilla-python/dev/

License:Apache License 2.0


Languages

Language:Python 100.0%