From 4851a3906e4ad4a230a93fee72d3896d39098485 Mon Sep 17 00:00:00 2001 From: HeAndres <69391549+HeAndres@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:22:37 +0200 Subject: [PATCH 1/4] correct phrase on docs: "a recod question" -> "a question" (#5599) # Description Typo Fix in API Reference (rg.Response). Phrase with typo: "Therefore, _a recod question_ can have multiple responses, one for each user that has answered the question." Given correction: " Therefore, _a question_ can have multiple responses, one for each user that has answered the question." Link to the docs: https://docs.argilla.io/latest/reference/argilla/records/responses/ Closes #5598 **Type of change** - Documentation update **How Has This Been Tested** No tests needed **Checklist** - I made corresponding changes to the documentation --- argilla/docs/reference/argilla/records/responses.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argilla/docs/reference/argilla/records/responses.md b/argilla/docs/reference/argilla/records/responses.md index f4cb3367ff..6f190b9aa1 100644 --- a/argilla/docs/reference/argilla/records/responses.md +++ b/argilla/docs/reference/argilla/records/responses.md @@ -3,7 +3,7 @@ hide: footer --- # `rg.Response` -Class for interacting with Argilla Responses of records. Responses are answers to questions by a user. Therefore, a recod question can have multiple responses, one for each user that has answered the question. A `Response` is typically created by a user in the UI or consumed from a data source as a label, unlike a `Suggestion` which is typically created by a model prediction. +Class for interacting with Argilla Responses of records. Responses are answers to questions by a user. Therefore, a question can have multiple responses, one for each user that has answered the question. A `Response` is typically created by a user in the UI or consumed from a data source as a label, unlike a `Suggestion` which is typically created by a model prediction. ## Usage Examples From 1a2249d7b18755ac0c0c8ec5ec4f9f5f8cafc328 Mon Sep 17 00:00:00 2001 From: ACMCMC <20495460+ACMCMC@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:42:16 +0200 Subject: [PATCH 2/4] Typo: missing comma (#5565) # Description Just a typo fix. **Type of change** - Documentation update **How Has This Been Tested** Not needed. **Checklist** - I added relevant documentation - I made corresponding changes to the documentation --- .../how-to-configure-argilla-on-huggingface.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/argilla/docs/getting_started/how-to-configure-argilla-on-huggingface.md b/argilla/docs/getting_started/how-to-configure-argilla-on-huggingface.md index a256f5d15c..d9c6e05efe 100644 --- a/argilla/docs/getting_started/how-to-configure-argilla-on-huggingface.md +++ b/argilla/docs/getting_started/how-to-configure-argilla-on-huggingface.md @@ -110,7 +110,7 @@ HF_TOKEN = "..." client = rg.Argilla( api_url="", - api_key="" + api_key="", headers={"Authorization": f"Bearer {HF_TOKEN}"} ) ``` @@ -130,4 +130,4 @@ In summary, when setting up a Space: If you are creating the Space under your personal account, **don't insert any value for `USERNAME` and `PASSWORD`**. Once you launch the Space you will be able to Sign in with your Hugging Face username and the `owner` role. !!! info "Creating a Space under an organization" - If you are creating the Space under an organization **make sure to insert your Hugging Face username in the secret `USERNAME`**. In this way, you'll be able to Sign in with your Hugging Face user. \ No newline at end of file + If you are creating the Space under an organization **make sure to insert your Hugging Face username in the secret `USERNAME`**. In this way, you'll be able to Sign in with your Hugging Face user. From 0a7307a77d2309b82f0cf0de20162793545eeb14 Mon Sep 17 00:00:00 2001 From: ACMCMC <20495460+ACMCMC@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:42:36 +0200 Subject: [PATCH 3/4] Typo fix (#5566) # Description Just a missing comma --- argilla/docs/how_to_guides/dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argilla/docs/how_to_guides/dataset.md b/argilla/docs/how_to_guides/dataset.md index 47ed998fd4..97a0530356 100644 --- a/argilla/docs/how_to_guides/dataset.md +++ b/argilla/docs/how_to_guides/dataset.md @@ -279,7 +279,7 @@ To collect feedback for your dataset, you need to formulate questions that annot ```python rg.RatingQuestion( name="rating", - values=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + values=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], title="How satisfied are you with the response?", description="1 = very unsatisfied, 10 = very satisfied", required=True, From 3121ace2c376647309d6cc7c958923a9efa4f28e Mon Sep 17 00:00:00 2001 From: ACMCMC <20495460+ACMCMC@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:42:55 +0200 Subject: [PATCH 4/4] Fix typo (#5567) Just a missing comma --- argilla/docs/how_to_guides/dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argilla/docs/how_to_guides/dataset.md b/argilla/docs/how_to_guides/dataset.md index 97a0530356..759b4fad74 100644 --- a/argilla/docs/how_to_guides/dataset.md +++ b/argilla/docs/how_to_guides/dataset.md @@ -338,7 +338,7 @@ Metadata properties allow you to configure the use of metadata information for t ```python rg.TermsMetadataProperty( name="terms", - options=["group-a", "group-b", "group-c"] + options=["group-a", "group-b", "group-c"], title="Annotation groups", visible_for_annotators=True, )