Relyt(
self,
connection_string: str,
embedding_function: Embeddings,
embedding_dimension: int =| Name | Type | Description |
|---|---|---|
embedding* | unknown | Embeddings to use. |
dimension* | unknown | Dimension of the embeddings. |
db_url* | unknown | Database URL. |
collection_name | str | Default: _LANGCHAIN_DEFAULT_COLLECTION_NAMEName of the collection. |
new_table* | unknown | Whether to create a new table or connect to an existing one. |
Relyt (distributed PostgreSQL) vector store.
Relyt is a distributed full postgresql syntax cloud-native database.
connection_string is a postgres connection string.embedding_function any embedding function implementing
langchain.embeddings.base.Embeddings interface.collection_name is the name of the collection to use. (default: langchain)
pre_delete_collection if True, will delete the collection if it exists.
(default: False)