Fastino
  • Playground
  • Community
  • Blog
  • GET STARTED
    • Quickstart
    • Use the API
    • Rate Limits
    • Privacy Mode
    • GPU / CPU
  • Models
    • Classification
    • PII
    • Information Extraction
    • Text to JSON (experimental)
    • Function Calling (experimental)
  • Summarizaton (experimental)
  • Profanity Censor (experimental)
Powered by GitBook
On this page
  • Overview
  • Example Use Cases
  • Domains
  • Usage
  1. Models

Information Extraction

A model to extract structured, machine-operable data from natural language text

Overview

Fastino’s Information Extraction model is built to detect and extract structured data from unstructured text across diverse domains.

The model operates in a zero-shot fashion, meaning users can define the specific entity types they want to extract at runtime without needing to retrain. It’s ideal for structuring data from documents, knowledge bases, chat transcripts, and narrative content. The model can also be fine-tuned on custom schemas for higher precision in domain-specific tasks.


Example Use Cases

  • Structuring key information from documents, news, or web pages

  • Extracting facts and metrics from research papers or reports

  • Real-time entity extraction from support chats, call transcripts, or emails

  • Capturing medical, legal, or financial data for downstream processing


Domains

Fastino’s Information Extraction model supports wide-ranging semantic labeling across many domains. It’s designed to help you extract structured information from unstructured text for use in knowledge bases, search, analytics, and downstream automation.

Domain
Description
Example Entities

People & Demographics

Extract identities, roles, and attributes related to individuals. Useful for profiling, biography parsing, or user interaction logs.

name, gender, age, nationality, occupation

Healthcare & Life Sciences

Capture medically relevant entities from clinical narratives, research literature, or patient records.

symptom, diagnosis, treatment, medication, medical condition, lab result

Places & Geography

Detect locations, addresses, and spatial markers in documents or conversations for mapping, logistics, and geoparsing.

street address, city, postal code, country, geo coordinates

Time & Events

Extract absolute and relative time references, event dates, durations, and cycles. Ideal for timeline construction or planning systems.

date, time, deadline, hospital admission date, flight date

Scientific & Academic

Identify structured elements in academic papers, research notes, or technical documentation.

theory, equation, dataset, gene, AI/ML model, publication year

Finance & Commerce

Extract data for transaction analytics, document structuring, or entity resolution in financial records and receipts.

transaction id, loan amount, account balance, stock ticker, revenue

Legal & Government

Detect references to laws, legal entities, identifiers, and procedures for case intake, compliance, or policy review.

legal case, passport number, visa type, regulation, contract type

Technology & Security

Extract identifiers and attributes related to digital systems, software metadata, and authentication artifacts.

ip address, api key, device id, commit hash, authentication token

Media & Entertainment

Parse structured references in media content, entertainment metadata, and online content streams.

movie, book, artist or performer, genre, song

Education & Skills

Extract academic background, credentials, and skill indicators from resumes, bios, or learning transcripts.

degree, university, graduation year, skill, GPA


Usage

Example Body
{
  "model_id": "fastino-data-structuring-••••••••••",
  "input": [
    {
      "text": "Albert Einstein proposed special relativity in 1905. This theory redefined concepts of space and time. E = mc² emerged from these groundbreaking ideas.",
      "parameters": {
        "entity_types": [
          "person",
          "theory",
          "date",
          "equation"
        ]
      }
    }
  ]
}
Example Response
[
  {
    "input": "Albert Einstein proposed special relativity in 1905. This theory redefined concepts of space and time. E = mc² emerged from these groundbreaking ideas.",
    "latency_ms": 84.12,
    "message": "Responses from endpoint.",
    "output": {
      "entities": [
        {
          "start": 0,
          "end": 15,
          "label": "person",
          "text": "Albert Einstein",
          "score": 0.986
        },
        {
          "start": 25,
          "end": 45,
          "label": "theory",
          "text": "special relativity",
          "score": 0.934
        },
        {
          "start": 49,
          "end": 53,
          "label": "date",
          "text": "1905",
          "score": 0.921
        },
        {
          "start": 101,
          "end": 108,
          "label": "equation",
          "text": "E = mc²",
          "score": 0.947
        }
      ]
    },
    "status": "success"
  }
]
PreviousPIINextText to JSON (experimental)

Last updated 1 day ago