UNPKG

gliner-node-wrapper

Version:

Node.js wrapper around Python-based GlinER NER library

9 lines (6 loc) 322 B
const { extractEntities } = require('./index'); const text = "Satya Nadella leads Microsoft, headquartered in the US."; const labels = ["person", "organization", "location"]; extractEntities(text, labels) .then((entities) => console.log("Entities:", entities)) .catch((err) => console.error("Error:", err.message));