@deprecated_factory("hypothesis", "eds.hypothesis", default_config=DEFAULT_CONFIG)
@Language.factory("eds.hypothesis", default_config=DEFAULT_CONFIG)
def create_component(
nlp: Language,
name: str,
attr: str,
pseudo: Optional[List[str]],
preceding: Optional[List[str]],
following: Optional[List[str]],
termination: Optional[List[str]],
verbs_eds: Optional[List[str]],
verbs_hyp: Optional[List[str]],
on_ents_only: bool,
within_ents: bool,
explain: bool,
):
return Hypothesis(
nlp=nlp,
attr=attr,
pseudo=pseudo,
preceding=preceding,
following=following,
termination=termination,
verbs_eds=verbs_eds,
verbs_hyp=verbs_hyp,
on_ents_only=on_ents_only,
within_ents=within_ents,
explain=explain,
)