Skip to content

Template Library

Choose a template based on what you want to extract.


I want to analyze...


Not sure what to choose?

By task type:

Task Recommended Template
Summarize a document general/model
Extract a list of items general/list
Build a knowledge network general/graph
Create a timeline general/base_temporal_graph

More task-based guidance

By output type:

Output Auto-Type Use When...
Structured summary AutoModel Need a report
Network/Graph AutoGraph Need relationships
Timeline AutoTemporalGraph Need time sequence

More output type guidance


Quick Start

# List all templates
he list template

# Use a template
he parse document.md -t general/biography_graph -l en -o ./output/
from hyperextract import Template

# Create template
ka = Template.create("general/biography_graph", "en")

# Extract
result = ka.parse(text)

Browse All Templates

Complete Template Reference


Create Custom Templates

Need something specific? Learn to create your own:

Custom Templates Guide