Return Neo4jVector initialized from texts and embeddings.
Neo4j credentials are required in the form of url, username,
and password and optional database parameters.
from_texts(
cls: Type[Neo4jVector],
texts: List[str],
embedding: Embeddings,
metadatas: Optional[List[dict]] = None,
distance_strategy: DistanceStrategy = DEFAULT_DISTANCE_STRATEGY,
ids: Optional[List[str]] = None,
**kwargs: Any = {}
) -> Neo4jVector