forked from danny-avila/rag_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store_factory.py
63 lines (58 loc) · 2.03 KB
/
store_factory.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from typing import Optional
from langchain_core.embeddings import Embeddings
from store import AsyncPgVector, ExtendedPgVector
from store import AtlasMongoVector
from pymongo import MongoClient
def get_vector_store(
connection_string: str,
embeddings: Embeddings,
collection_name: str,
mode: str = "sync",
search_index: Optional[str] = None
):
if mode == "sync":
return ExtendedPgVector(
connection_string=connection_string,
embedding_function=embeddings,
collection_name=collection_name,
)
elif mode == "async":
return AsyncPgVector(
connection_string=connection_string,
embedding_function=embeddings,
collection_name=collection_name,
)
elif mode == "atlas-mongo":
mongo_db = MongoClient(connection_string).get_database()
mong_collection = mongo_db[collection_name]
return AtlasMongoVector(
collection=mong_collection, embedding=embeddings, index_name=search_index
)
else:
raise ValueError("Invalid mode specified. Choose 'sync' or 'async'.")
async def create_index_if_not_exists(conn, table_name: str, column_name: str):
# Construct index name conventionally
index_name = f"idx_{table_name}_{column_name}"
# Check if index exists
exists = await conn.fetchval(
f"""
SELECT EXISTS (
SELECT FROM pg_class c
JOIN pg_namespace n ON n.oid = c.relnamespace
WHERE c.relname = $1
AND n.nspname = 'public' -- Or specify your schema if different
);
""",
index_name,
)
# Create the index if it does not exist
if not exists:
await conn.execute(
f"""
CREATE INDEX CONCURRENTLY IF NOT EXISTS {index_name}
ON public.{table_name} ({column_name});
"""
)
print(f"Index {index_name} created on {table_name}.{column_name}")
else:
print(f"Index {index_name} already exists on {table_name}.{column_name}")