A named entity extracted from a conversation.

interface Entity {
    name: string;
    type:
        | "other"
        | "person"
        | "place"
        | "organization"
        | "thing";
    relation?: string;
}

Properties

Properties

name: string

Entity name

type:
    | "other"
    | "person"
    | "place"
    | "organization"
    | "thing"

Entity type

relation?: string

Relationship to user