We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c3a5c commit 6148b10Copy full SHA for 6148b10
langchain_postgres/v2/async_vectorstore.py
@@ -210,7 +210,7 @@ async def create(
210
hybrid_search_config.tsv_column = ""
211
if embedding_column not in columns:
212
raise ValueError(f"Embedding column, {embedding_column}, does not exist.")
213
- if columns[embedding_column] != "USER-DEFINED":
+ if columns[embedding_column] not in ["USER-DEFINED", "vector"]:
214
raise ValueError(
215
f"Embedding column, {embedding_column}, is not type Vector."
216
)
0 commit comments