can someone explain what the consequence of setting 'in_place' to 'true' would be?
class MetadataExtractor(BaseExtractor):
"""Metadata extractor."""
...other code...
in_place: bool = Field(
default=True, description="Whether to process nodes in place."
)
I've been using this class in my pipeline a lot and it's fantastic, but don't quite know what this field does. A low level explanation would be blessed β€οΈ
Thank you much in advance π