[docs]classLocation(HasNarratorKnowledge,Node):"""Location() Named place provider with local namespace publication. Why ---- ``Location`` gives story templates a lightweight provider node for places. Settings and runtime namespace gathering can reference these nodes without making places part of the cursor-traversal fabric. Key Features ------------ * Carries a human-friendly ``name`` alongside the graph label. * Carries narrator-facing epistemic annotations on the location itself. * Publishes location metadata as a local namespace contribution through :meth:`provide_location_symbols`. API --- - :attr:`name` stores the authored display name. - :meth:`provide_location_symbols` returns the local namespace payload later gathered into scoped runtime views. """name:str=""@contribute_nsdefprovide_location_symbols(self)->dict[str,Any]:"""Publish location attributes for local namespace contribution."""return{"label":self.get_label(),"name":self.nameorself.get_label(),}