From 41f6085eece2e9780ee0eed09840acbffd3dcb61 Mon Sep 17 00:00:00 2001 From: Narek Mkhitaryan Date: Tue, 15 Oct 2024 19:25:29 +0400 Subject: [PATCH] updates in prepare_export docs --- src/superannotate/lib/app/interface/sdk_interface.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/superannotate/lib/app/interface/sdk_interface.py b/src/superannotate/lib/app/interface/sdk_interface.py index 880043d1d..094f692f9 100644 --- a/src/superannotate/lib/app/interface/sdk_interface.py +++ b/src/superannotate/lib/app/interface/sdk_interface.py @@ -1215,11 +1215,11 @@ def prepare_export( :param only_pinned: enable only pinned output in export. This option disables all other types of output. :type only_pinned: bool - :param kwargs: - Arbitrary kwargs: + :param kwargs: Arbitrary keyword arguments: - - integration_name: can be provided which will be used as a storage to store export file - - format: can be CSV for the Gen AI projects + - integration_name: The name of the integration within the platform that is being used. + - format: The format in which the data will be exported in multimodal projects. + It can be either CSV or JSON. If None, the data will be exported in the default JSON format. :return: metadata object of the prepared export :rtype: dict @@ -1232,7 +1232,7 @@ def prepare_export( project = "Project Name", folder_names = ["Folder 1", "Folder 2"], annotation_statuses = ["Completed","QualityCheck"], - export_type = "CSV" + format = "CSV" ) client.download_export("Project Name", export, "path_to_download")