@deprecated_factory(
"antecedents",
"eds.history",
default_config=DEFAULT_CONFIG,
assigns=["span._.history"],
)
@deprecated_factory(
"eds.antecedents",
"eds.history",
default_config=DEFAULT_CONFIG,
assigns=["span._.history"],
)
@deprecated_factory(
"history",
"eds.history",
default_config=DEFAULT_CONFIG,
assigns=["span._.history"],
)
@Language.factory(
"eds.history",
default_config=DEFAULT_CONFIG,
assigns=["span._.history"],
)
def create_component(
nlp: Language,
name: str,
history: Optional[List[str]],
termination: Optional[List[str]],
use_sections: bool,
attr: str,
explain: bool,
on_ents_only: bool,
):
return History(
nlp,
attr=attr,
history=history,
termination=termination,
use_sections=use_sections,
explain=explain,
on_ents_only=on_ents_only,
)