<h1 align="center">
<a href=""><img src="https://github.com/dvsrepo/imgs/raw/main/rg.svg" alt="Argilla" width="150"></a>
<br>
Argilla-Server
<br>
</h1>
<h3 align="center">The repository for the Python native FastAPI server for Argilla backend.</h2>
<p align="center">
<a href="https://pypi.org/project/argilla-server/">
<img alt="CI" src="https://img.shields.io/pypi/v/argilla.svg?style=flat-round&logo=pypi&logoColor=white">
</a>
<img alt="Codecov" src="https://codecov.io/gh/argilla-io/argilla-server/branch/main/graph/badge.svg?token=VDVR29VOMG"/>
<a href="https://pepy.tech/project/argilla-server">
<img alt="CI" src="https://static.pepy.tech/personalized-badge/argilla-server?period=month&units=international_system&left_color=grey&right_color=blue&left_text=pypi%20downloads/month">
</a>
<a href="https://huggingface.co/new-space?template=argilla/argilla-template-space">
<img src="https://huggingface.co/datasets/huggingface/badges/raw/main/deploy-to-spaces-sm.svg"/>
</a>
</p>
<p align="center">
<a href="https://twitter.com/argilla_io">
<img src="https://img.shields.io/badge/twitter-black?logo=x"/>
</a>
<a href="https://www.linkedin.com/company/argilla-io">
<img src="https://img.shields.io/badge/linkedin-blue?logo=linkedin"/>
</a>
<a href="https://join.slack.com/t/rubrixworkspace/shared_invite/zt-whigkyjn-a3IUJLD7gDbTZ0rKlvcJ5g">
<img src="https://img.shields.io/badge/slack-purple?logo=slack"/>
</a>
</p>
Argilla is a **collaboration platform for AI engineers and domain experts** that require **high-quality outputs, full
data ownership, and overall efficiency**.
This repository only contains developer info about the backend server. If you want to get started, we recommend taking a
look at our [main repository](https://github.com/argilla-io/argilla) or our [documentation](https://docs.argilla.io/).
Are you a contributor or do you want to understand what is going on under the hood, please keep reading the
documentation below.
## Development environment
By default all commands executed with `pdm run` will get environment variables from `.env.dev` except command `pdm test`
that will overwrite some of them using values coming from `.env.test` file.
These environment variables can be override if necessary so feel free to defined your own ones locally.
### Run cli
```sh
pdm cli
```
### Run database migrations
By default a SQLite located at `~/.argilla/argilla.db` will be used. You can create the database and run migrations with
the following custom PDM command:
```sh
pdm migrate
```
### Run tests
A SQLite database located at `~/.argilla/argilla-test.db` will be automatically created to run tests. You can run the
entire test suite using the following custom PDM command:
```sh
pdm test
```
## Run development server
Note: If you need to run the frontend server you can follow the instructions at
the [argilla-frontend](/argilla-frontend/README.md) project
### Run uvicorn development server
```sh
pdm server
```
Raw data
{
"_id": null,
"home_page": "https://www.argilla.io",
"name": "extralit-server",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.11,>=3.8",
"maintainer_email": "Jonny Tran <nhat.c.tran@gmail.com>, argilla <contact@argilla.io>",
"keywords": "literature-review, data-annotation, artificial-intelligence, machine-learning, human-in-the-loop, mlops",
"author": null,
"author_email": "Jonny Tran <nhat.c.tran@gmail.com>, argilla <contact@argilla.io>",
"download_url": "https://files.pythonhosted.org/packages/62/19/a78646b65d5fe04b880925b60f818f4ec02d3034e90e2ddfa1e02b962846/extralit_server-0.2.1.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">\n <a href=\"\"><img src=\"https://github.com/dvsrepo/imgs/raw/main/rg.svg\" alt=\"Argilla\" width=\"150\"></a>\n <br>\n Argilla-Server\n <br>\n</h1>\n<h3 align=\"center\">The repository for the Python native FastAPI server for Argilla backend.</h2>\n\n\n<p align=\"center\">\n<a href=\"https://pypi.org/project/argilla-server/\">\n<img alt=\"CI\" src=\"https://img.shields.io/pypi/v/argilla.svg?style=flat-round&logo=pypi&logoColor=white\">\n</a>\n<img alt=\"Codecov\" src=\"https://codecov.io/gh/argilla-io/argilla-server/branch/main/graph/badge.svg?token=VDVR29VOMG\"/>\n<a href=\"https://pepy.tech/project/argilla-server\">\n<img alt=\"CI\" src=\"https://static.pepy.tech/personalized-badge/argilla-server?period=month&units=international_system&left_color=grey&right_color=blue&left_text=pypi%20downloads/month\">\n</a>\n<a href=\"https://huggingface.co/new-space?template=argilla/argilla-template-space\">\n<img src=\"https://huggingface.co/datasets/huggingface/badges/raw/main/deploy-to-spaces-sm.svg\"/>\n</a>\n</p>\n\n<p align=\"center\">\n<a href=\"https://twitter.com/argilla_io\">\n<img src=\"https://img.shields.io/badge/twitter-black?logo=x\"/>\n</a>\n<a href=\"https://www.linkedin.com/company/argilla-io\">\n<img src=\"https://img.shields.io/badge/linkedin-blue?logo=linkedin\"/>\n</a>\n<a href=\"https://join.slack.com/t/rubrixworkspace/shared_invite/zt-whigkyjn-a3IUJLD7gDbTZ0rKlvcJ5g\">\n<img src=\"https://img.shields.io/badge/slack-purple?logo=slack\"/>\n</a>\n</p>\n\nArgilla is a **collaboration platform for AI engineers and domain experts** that require **high-quality outputs, full\ndata ownership, and overall efficiency**.\n\nThis repository only contains developer info about the backend server. If you want to get started, we recommend taking a\nlook at our [main repository](https://github.com/argilla-io/argilla) or our [documentation](https://docs.argilla.io/).\n\nAre you a contributor or do you want to understand what is going on under the hood, please keep reading the\ndocumentation below.\n\n## Development environment\n\nBy default all commands executed with `pdm run` will get environment variables from `.env.dev` except command `pdm test`\nthat will overwrite some of them using values coming from `.env.test` file.\n\nThese environment variables can be override if necessary so feel free to defined your own ones locally.\n\n### Run cli\n\n```sh\npdm cli\n```\n\n### Run database migrations\n\nBy default a SQLite located at `~/.argilla/argilla.db` will be used. You can create the database and run migrations with\nthe following custom PDM command:\n\n```sh\npdm migrate\n```\n\n### Run tests\n\nA SQLite database located at `~/.argilla/argilla-test.db` will be automatically created to run tests. You can run the\nentire test suite using the following custom PDM command:\n\n```sh\npdm test\n```\n\n## Run development server\n\nNote: If you need to run the frontend server you can follow the instructions at\nthe [argilla-frontend](/argilla-frontend/README.md) project\n\n### Run uvicorn development server\n\n```sh\npdm server\n```\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Open-source tool for accurate & fast scientific literature data extraction with LLM and human-in-the-loop.",
"version": "0.2.1",
"project_urls": {
"Documentation": "https://docs.argilla.io",
"Homepage": "https://www.argilla.io",
"Repository": "https://github.com/argilla-io/argilla"
},
"split_keywords": [
"literature-review",
" data-annotation",
" artificial-intelligence",
" machine-learning",
" human-in-the-loop",
" mlops"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4ebe83ff7a53fab82bd398f9dfbeaa035583ea26ae72eb0f7da4b8b0f66b3120",
"md5": "676ef53d6cd85b8df488e91c4e4b31a6",
"sha256": "e2589980fd6018fb30ca0093b2026be5e2a7441727b68dc2726a8492cba043cf"
},
"downloads": -1,
"filename": "extralit_server-0.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "676ef53d6cd85b8df488e91c4e4b31a6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.11,>=3.8",
"size": 370312,
"upload_time": "2024-09-17T06:21:32",
"upload_time_iso_8601": "2024-09-17T06:21:32.475287Z",
"url": "https://files.pythonhosted.org/packages/4e/be/83ff7a53fab82bd398f9dfbeaa035583ea26ae72eb0f7da4b8b0f66b3120/extralit_server-0.2.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6219a78646b65d5fe04b880925b60f818f4ec02d3034e90e2ddfa1e02b962846",
"md5": "3ce6fc138891b141fb01cd17d8787249",
"sha256": "ad1c84bddb0ab107300c64626f9ff918844736106d0ad9d2dc8dc44ad77c7090"
},
"downloads": -1,
"filename": "extralit_server-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "3ce6fc138891b141fb01cd17d8787249",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.11,>=3.8",
"size": 303855,
"upload_time": "2024-09-17T06:21:34",
"upload_time_iso_8601": "2024-09-17T06:21:34.001543Z",
"url": "https://files.pythonhosted.org/packages/62/19/a78646b65d5fe04b880925b60f818f4ec02d3034e90e2ddfa1e02b962846/extralit_server-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-17 06:21:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "argilla-io",
"github_project": "argilla",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "extralit-server"
}