feat: implement keyword, vector and hybrid search inside vector stores for PGVector provider

This commit is contained in:
r3v5 2025-08-07 16:57:19 +01:00
parent 58e164b8bc
commit 12f4cfa9f1
No known key found for this signature in database
GPG key ID: 7758B9F272DE67D9
11 changed files with 1014 additions and 29 deletions

View file

@ -57,11 +57,13 @@ def skip_if_provider_doesnt_support_openai_vector_stores_search(client_with_mode
"inline::sqlite-vec",
"remote::milvus",
"inline::milvus",
"remote::pgvector",
],
"hybrid": [
"inline::sqlite-vec",
"inline::milvus",
"remote::milvus",
"remote::pgvector",
],
}
supported_providers = search_mode_support.get(search_mode, [])