Skip to main content

📦 @bntk/ner

EntityType​

Defined in: index.ts:22

Enumeration of supported named entity types.

Enumeration Members​

Enumeration MemberValueDefined in
DATE"DATE"index.ts:26
LOCATION"LOCATION"index.ts:25
MONEY"MONEY"index.ts:27
ORGANIZATION"ORGANIZATION"index.ts:24
PERCENT"PERCENT"index.ts:28
PERSON"PERSON"index.ts:23
TIME"TIME"index.ts:29
UNKNOWN"UNKNOWN"index.ts:30

Entity​

Defined in: index.ts:10

Represents a named entity found in text with its position and classification details.

Properties​

PropertyTypeDescriptionDefined in
confidencenumberConfidence score of the classification (0-1)index.ts:15
endnumberEnding position of the entity in the textindex.ts:14
startnumberStarting position of the entity in the textindex.ts:13
textstringThe actual text of the entityindex.ts:11
typeEntityTypeThe classification type of the entityindex.ts:12

batchExtractEntities()​

function batchExtractEntities(texts): Entity[][];

Defined in: index.ts:96

Processes multiple texts for entity extraction in batch.

Parameters​

ParameterTypeDescription
textsstring[]Array of texts to process

Returns​

Entity[][]

Array of entity arrays for each input text

Example​

const results = batchExtractEntities(["John Doe", "New York"]);
// Returns: [[{text: "John Doe", ...}], [{text: "New York", ...}]]

classifyEntity()​

function classifyEntity(text): EntityType;

Defined in: index.ts:68

Classifies a single text segment into an entity type.

Parameters​

ParameterTypeDescription
textstringThe text to classify

Returns​

EntityType

The predicted entity type

Example​

const type = classifyEntity("John Doe");
// Returns: EntityType.PERSON

extractEntities()​

function extractEntities(text): Entity[];

Defined in: index.ts:41

Extracts named entities from input text.

Parameters​

ParameterTypeDescription
textstringThe input text to analyze

Returns​

Entity[]

Array of detected entities with their positions and classifications

Example​

const entities = extractEntities("John Doe works at Apple Inc.");
// Returns: [{text: "John Doe", type: "PERSON", start: 0, end: 8, confidence: 0.95}]

getEntityConfidence()​

function getEntityConfidence(text, entityType): number;

Defined in: index.ts:81

Calculates confidence score for entity classification.

Parameters​

ParameterTypeDescription
textstringThe text to analyze
entityTypeEntityTypeThe entity type to check

Returns​

number

Confidence score between 0 and 1

Example​

const confidence = getEntityConfidence("John Doe", EntityType.PERSON);
// Returns: 0.85

getSupportedEntityTypes()​

function getSupportedEntityTypes(): EntityType[];

Defined in: index.ts:107

Retrieves all supported entity types.

Returns​

EntityType[]

Array of all supported entity types

Example​

const types = getSupportedEntityTypes();
// Returns: [EntityType.PERSON, EntityType.ORGANIZATION, ...]