Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This optional module is part of release 24.4 and is still in the proof-of-concept (POC) stage.

Introduction

Generative metadata allows for creating instructions for an AI model to generate multiple metadata fields. Any metadata field can be generated by providing a good hint to the AI model. For the POC we have created the following instructions. During the POC phase, these instructions are stored as custom properties of the Plugins.

Code Block
languagejson
{
  "Fields": {
    "Dynamic.GeneratedPocTitle": {
      "Hint": "Generate a prosaic title"
    },
    "Dynamic.GeneratedPocDescription": {
      "Hint": "Generate a description"
    },
    "Descriptive.Keywords.Keyword": {
      "Hint": "Generate a list of keywords as JSON array. All keywords should start with a capital letter. Generate around 10 keywords.",
      "Type": "array"
    },
    "Descriptive.Position.Location": {
      "Hint": "Generate the geocoordinates formatted as longitude and latitude seperated by comma"
    },
    "Dynamic.GeneratedPocIsPoorQuality": {
      "Hint": "Generate whether there is image has poor quality or is blurry",
      "Type": "boolean"
    },
    "Dynamic.GeneratedPocGdprHasFace": {
      "Hint": "Generate whether there is a human face on the image",
      "Type": "boolean"
    }
  }

...