langchain_core.load.serializable.BaseSerialized¶

class langchain_core.load.serializable.BaseSerialized[source]¶

Base class for serialized objects.

Parameters
  • lc – The version of the serialization format.

  • id – The unique identifier of the object.

  • name – The name of the object. Optional.

  • graph – The graph of the object. Optional.

lc: int¶
id: List[str]¶
name: NotRequired[str]¶
graph: NotRequired[Dict[str, Any]]¶