anno-cli 0.6.0

CLI for anno: extract entities, coreference chains, relations, and PII from text, HTML, and URLs
anno-cli-0.6.0 is not a library.

anno - Information Extraction CLI

A small CLI for anno focused on:

  • NER (named entity recognition)
  • within-document coreference
  • structured pattern extraction (dates, money, emails)

Evaluation/benchmarking commands exist behind feature flags.

Usage

# Basic NER extraction
anno extract --text "Lynn Conway worked at IBM and Xerox PARC in California."

# Debug coreference
anno debug --coref -t "Sophie Wilson designed the ARM processor. She revolutionized computing."

# Evaluate against gold annotations
anno eval -t "Lynn Conway worked at IBM." -g "Lynn Conway:PER:0:11"

# Validate annotation files
anno validate file.jsonl

# Show available models and features
anno info

All logic lives in crate::cli::*; this is just the dispatcher.