Tutorial: Uploading Files with Metadata through SDK CLI

Learn to quickly upload large amounts of files with metadata. In this tutorial, you'll upload a set of hotel reviews but you can replace these files with your own. You will use the SDK package with a command-line.

  • Level: Beginner
  • Time to complete: 10 minutes
  • Prerequisites:
    • You must be an Admin to complete this tutorial.
    • The workspace where you want to upload the files must already be created in deepset Cloud. In this tutorial, we call the workspace hotel_reviews.
  • Goal: After completing this tutorial, you will have uploaded a set of hotel reviews with metadata to a deepset Cloud workspace. You can replace this dataset with your custom one.

Prepare Your Files

This tutorial uses a set of hotel reviews with some metadata in them. You can also use your own files; just make sure they're in the TXT or PDF format.

  1. Download the hotel reviews dataset.
  2. Extract the files to a folder called hotel_reviews in your Documents folder. This can take a couple of minutes.

Result: You have 5,956 files in the \Documents\hotel_reviews folder, 2978 TXT files and 2978 JSON files. Each TXT file is accompanied by a .meta.json file containing the text file metadata.

Install the SDK

  1. Open the command line and run:
    pip install deepset-cloud-sdk
    
  2. Wait until the installation finishes with a success message.

Result: You have installed the deepset Cloud SDK. It comes with a command line interface that we'll use to upload the files.

Obtain the API Key

  1. Log in to deepset Cloud.

  2. Click your initials in the top right corner and select Connections.

    The settings menu expanded with the connections option indicated
  3. Under API Keys, click Add new key.

  4. Select the expiration date for your key and click Generate key.

  5. Copy the key and save it to a notepad.

  6. Click Add new key.

Result: You have an API key saved in a file. You can now use it to upload your files.

Upload Files

  1. Open the command line and run the following command to log in to deepset Cloud:
    deepset-cloud login
    
    python -m deepset_cloud_sdk.cli login
    
  2. When prompted, paste your API key.
  3. Type the name of the deepset Cloud workspace where you want to upload the files. This creates an .env file with the information you just provided. The SDK uses the information from this file when uploading files.
  4. Run this command to upload files, including all the subfolders of the hotel_reviews folder and overwrite any files with the same name that might already exist in the workspace:
deepset-cloud upload <path_to_hotel_reviews_folder> --recursive --write-mode OVERWRITE 
python -m deepset_cloud_sdk.cli upload <path_to_hotel_reviews_folder> --recursive --write-mode OVERWRITE
  1. Wait until the upload finishes succesfully. You should see this message:
    Subsequent info messages informing that the upload of 5956 files was successful and that 2978 files are listed in deepset Cloud
    5956 files are uploaded and half of them, 2978 are listed in deepset Cloud. (This is because the metadata files are not shown in deepset Cloud).

Result: You have uploaded all your files, including the ones from the subfolders. Let's now see if they're showing up in deepset Cloud.

Verify the Upload

  • In the command line, list the uploaded files by running:

    deepset-cloud list-files
    
    python -m deepset_cloud_sdk.cli list-files
    

    You should see a list of files with file ID, URL, name, size, metadata, and the date when it was created.

    A list of files with detailed information for each file.
    With the number of files we uploaded, it's easier to verify if they uploaded correctly in the deepset Cloud UI.

  • You can also check it in deepset Cloud. Click the name of the workspace to switch to the workspace where you uploaded the files and choose Files in the navigation. You should see all the uploaded files on the Files page.

  • Now, let's check if the metadata was uploaded.

    • One way to do this is to open a random file and then click View Metadata on the file preview.

    • Metadata shows up as search filters, so let's check if that's the case. You need a pipeline to run a search, so if you don't have one in this workspace, let's quickly create one:

      1. Go to Pipeline Templates, click Basic QA, and choose Retrieval Augmented Generation Question Answering Llama2-13b.
      2. Type QuestionAnswering_en-test as the pipeline name and create the pipeline. You're redirected to the Pipelines page with your pipeline listed in the In Development section.
      3. Click Deploy next to the pipeline and wait until your pipeline is indexed.
      4. When the pipeline is indexed, click Playground. S
      5. Choose your pipeline, and you'll see all the metadata now available as search criteria:
The hotel_reviews workspace with the search open and the search filters displayed.

Related Links