Skip to content

Commit 8c122d4

Browse files
sdiazlorpre-commit-ci[bot]davidberenstein1957
authored
docs: textcat tutorial and small doc fixes (#5055)
<!-- Thanks for your contribution! As part of our Community Growers initiative 🌱, we're donating Justdiggit bunds in your name to reforest sub-Saharan Africa. To claim your Community Growers certificate, please contact David Berenstein in our Slack community or fill in this form https://tally.so/r/n9XrxK once your PR has been merged. --> # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. Closes #5035 **Type of change** (Remember to title the PR according to the type of change) - [x] Documentation update **How Has This Been Tested** (Please describe the tests that you ran to verify your changes.) `mkdocs serve` --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: David Berenstein <[email protected]>
1 parent 0c3a247 commit 8c122d4

31 files changed

+604
-48
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ repos:
33
rev: v4.6.0
44
hooks:
55
- id: check-yaml
6+
exclude: argilla/mkdocs.yml
67
- id: end-of-file-fixer
78
exclude_types: [text, jupyter]
89
- id: trailing-whitespace

argilla/docs/community/contributor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: the Argilla Python SDK is the reference Argilla Python server SDK.
2+
description: This is a step-by-step guide to help you contribute to the Argilla project. We are excited to have you on board! 🚀
33
hide:
44
- footer
55
---

argilla/docs/community/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: the Argilla Python SDK is the reference Argilla Python server.
2+
description: These are the tools and resources to be up-to-date with the Argilla development and contribute to the project.
33
hide:
44
- toc
55
- footer

argilla/docs/getting_started/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: the Argilla Python SDK is the reference Argilla Python server.
2+
description: These are the Frequently Asked Questions regarding Argilla.
33
hide: toc
44
---
55

argilla/docs/getting_started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Installation of the Argilla Python SDK.
2+
description: Installation of the Argilla SDK.
33
---
44

55
# Installation

argilla/docs/how_to_guides/dataset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A **dataset** is a collection of records that you can configure for labelers to
2525
client=client
2626
)
2727
```
28-
> Check the [Dataset - Python Reference](../../reference/argilla/datasets/datasets.md) to see the attributes, arguments, and methods of the `Dataset` class in detail.
28+
> Check the [Dataset - Python Reference](../reference/argilla/datasets/datasets.md) to see the attributes, arguments, and methods of the `Dataset` class in detail.
2929

3030
=== "`rg.Settings`"
3131

@@ -45,7 +45,7 @@ A **dataset** is a collection of records that you can configure for labelers to
4545
)
4646
```
4747

48-
> Check the [Settings - Python Reference](../../reference/argilla/settings/settings.md) to see the attributes, arguments, and methods of the `Settings` class in detail.
48+
> Check the [Settings - Python Reference](../reference/argilla/settings/settings.md) to see the attributes, arguments, and methods of the `Settings` class in detail.
4949

5050
## Create a dataset
5151

argilla/docs/how_to_guides/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
description: These are the how-to guides for the Argilla Python SDK. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
2+
description: These are the how-to guides for the Argilla SDK. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
33
hide: toc
44
---
55

66
# How-to guides
77

8-
These are the how-to guides for *the Argilla Python SDK*. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
8+
These are the how-to guides for *the Argilla SDK*. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
99

1010
<div class="grid cards" markdown>
1111

argilla/docs/how_to_guides/query_export.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can search for records in your dataset by **querying** or **filtering**. The
1818
filter=filter
1919
)
2020
```
21-
> Check the [Query - Python Reference](../../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Query` class in detail.
21+
> Check the [Query - Python Reference](../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Query` class in detail.
2222

2323
=== "`rg.Filter`"
2424

@@ -29,7 +29,7 @@ You can search for records in your dataset by **querying** or **filtering**. The
2929
]
3030
)
3131
```
32-
> Check the [Filter - Python Reference](../../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Filter` class in detail.
32+
> Check the [Filter - Python Reference](../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Filter` class in detail.
3333

3434
## Query with search terms
3535

argilla/docs/how_to_guides/record.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A **record** in Argilla is a data item that requires annotation, consisting of o
3333
],
3434
)
3535
```
36-
> Check the [Record - Python Reference](../../reference/argilla/records/records.md) to see the attributes, arguments, and methods of the `Record` class in detail.
36+
> Check the [Record - Python Reference](../reference/argilla/records/records.md) to see the attributes, arguments, and methods of the `Record` class in detail.
3737

3838
## Add records
3939

@@ -222,7 +222,7 @@ You can associate vectors, like text embeddings, to your records. They can be us
222222

223223
You can also add vectors to a record in an initialized `Record` object.
224224

225-
> Check the [Vector - Python Reference](../../reference/argilla/records/vectors.md) to see the attributes, arguments, and methods of the `Vector` class in detail.
225+
> Check the [Vector - Python Reference](../reference/argilla/records/vectors.md) to see the attributes, arguments, and methods of the `Vector` class in detail.
226226

227227
```python
228228
# Add records to the dataset with the vector 'my_vector' and dimension=3
@@ -274,10 +274,10 @@ You can associate vectors, like text embeddings, to your records. They can be us
274274

275275
Suggestions refer to suggested responses (e.g. model predictions) that you can add to your records to make the annotation process faster. These can be added during the creation of the record or at a later stage. Only one suggestion can be provided for each question, and suggestion values must be compliant with the pre-defined questions e.g. if we have a `RatingQuestion` between 1 and 5, the suggestion should have a valid value within that range.
276276

277-
=== "As `Record objects"
277+
=== "As `Record` objects"
278278
You can also add suggestions to a record in an initialized `Record` object.
279279

280-
> Check the [Suggestions - Python Reference](../../reference/argilla/records/suggestions.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
280+
> Check the [Suggestions - Python Reference](../reference/argilla/records/suggestions.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
281281

282282
```python
283283
# Add records to the dataset with the label 'my_label'
@@ -348,7 +348,7 @@ If your dataset includes some annotations, you can add those to the records as y
348348
=== "As `Record` objects"
349349
You can also add suggestions to a record in an initialized `Record` object.
350350

351-
> Check the [Responses - Python Reference](../../reference/argilla/records/responses.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
351+
> Check the [Responses - Python Reference](../reference/argilla/records/responses.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
352352

353353
```python
354354
# Add records to the dataset with the label 'my_label'

argilla/docs/how_to_guides/user.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: In this section, we will provide a step-by-step guide to show how to manage users and their credentials.
33
---
44

5-
# User Management
5+
# User management
66

77
This guide provides an overview of user roles and credentials, explaining how to set up and manage users in Argilla.
88

@@ -69,7 +69,7 @@ Argilla provides a default user with the `owner` role to help you get started in
6969
client=client
7070
)
7171
```
72-
> Check the [User - Python Reference](../../reference/argilla/users.md) to see the attributes, arguments, and methods of the `User` class in detail.
72+
> Check the [User - Python Reference](../reference/argilla/users.md) to see the attributes, arguments, and methods of the `User` class in detail.
7373

7474
## Get current user
7575

0 commit comments

Comments
 (0)