Extraction Engines

Overview

Extraction Engines enable the extraction of structured data from unstructured text. These Engines can be used with Structures via Extraction Tasks. As of now, Gen AI Builder supports two types of Extraction Engines: the CSV Extraction Engine and the JSON Extraction Engine.

CSV

The CSV Extraction Engine extracts comma separated values from unstructured text.

name,age,location
Alice,28,New York
Bob,35,California
Charlie,40,
Collin,28,San Francisco

JSON

The JSON Extraction Engine extracts JSON-formatted values from unstructured text.

{
  "model": "GPT-3.5",
  "notes": [
    "Part of OpenAI's GPT series.",
    "Used in ChatGPT and Microsoft Copilot."
  ]
}
{
  "model": "GPT-4",
  "notes": [
    "Part of OpenAI's GPT series.",
    "Praised for increased accuracy and multimodal capabilities.",
    "Architecture and number of parameters not revealed."
  ]
}
...Output truncated for brevity...

Could this page be better? Report a problem or suggest an addition!