From da05c965b782ad1dc2129d6fafebd11b7d1a2bf5 Mon Sep 17 00:00:00 2001 From: davidberenstein1957 Date: Mon, 22 Jul 2024 14:11:17 +0200 Subject: [PATCH] Update optional arguments in main class overview --- argilla/docs/how_to_guides/import_export.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/argilla/docs/how_to_guides/import_export.md b/argilla/docs/how_to_guides/import_export.md index be6938faad..e6f0954d7b 100644 --- a/argilla/docs/how_to_guides/import_export.md +++ b/argilla/docs/how_to_guides/import_export.md @@ -17,6 +17,7 @@ In Argilla, you can import/export two main components of a dataset: ```python rg.Dataset.to_hub( repo_id="/", + with_records=True, generate_card=True ) ``` @@ -36,7 +37,8 @@ In Argilla, you can import/export two main components of a dataset: ```python rg.Dataset.to_disk( - path="/" + path="/", + with_records=True ) ``` === "`rg.Dataset.from_disk`" @@ -45,7 +47,9 @@ In Argilla, you can import/export two main components of a dataset: rg.Dataset.from_disk( path="/", name="", - workspace="" + workspace="", + client=rg.Client(), + with_records=True ) ``` === "`rg.Dataset.records.to_datasets()`"