v1.8.0 — Grammar Analysis & Lemma Extraction
New: Grammar Analysis (--parse)
bl --llm --parse "Der Mann geht nach Hause."Full grammatical analysis via LLM:
- Token Table: POS tag, lemma, morphological features, dependency relation
- Sentence Structure: phrase types (NP/VP/PP), clause structure
- Key Observations: verb position (V2), case marking, agreement, fixed phrases
- Translation: natural translation
Works for German, French, English — any language the LLM supports.
New: Lemma Extraction
LLM now identifies the dictionary/base form of inflected words:
ging→ lemmagehen(Past tense of gehen)besser→ lemmagut(Comparative form of gut)ran→ lemmarun(past tense of run)children→ lemmachild(Plural of child)
Documentation
Open-source grammar parser reference table:
spaCy, Stanza, TreeTagger, Stanford CoreNLP — with integration examples.