BaseModel#

class langchain_community.vectorstores.pgembedding.BaseModel(**kwargs: Any)[source]#

Base model for all SQL stores.

A simple constructor that allows initialization from kwargs.

Sets attributes on the constructed instance using the names and values in kwargs.

Only keys that are present as attributes of the instanceโ€™s class are allowed. These could be, for example, any mapped columns or relationships.

Attributes

metadata

registry

uuid

Methods

__init__(**kwargs)

A simple constructor that allows initialization from kwargs.

Parameters:

kwargs (Any) โ€“

__init__(**kwargs: Any) โ†’ None#

A simple constructor that allows initialization from kwargs.

Sets attributes on the constructed instance using the names and values in kwargs.

Only keys that are present as attributes of the instanceโ€™s class are allowed. These could be, for example, any mapped columns or relationships.

Parameters:
  • self (Any) โ€“

  • kwargs (Any) โ€“

Return type:

None