Changing collection name
Browse files
app.py
CHANGED
@@ -98,7 +98,7 @@ async def search_documents(
|
|
98 |
# Encode the query using the custom embedding function
|
99 |
query_embedding = embed_text(body.query)
|
100 |
|
101 |
-
collection_name = "
|
102 |
|
103 |
# Perform search using the precomputed embeddings
|
104 |
hits, error = searcher.search_documents(collection_name, query_embedding, user_id, body.limit)
|
@@ -131,7 +131,7 @@ async def generate_rag_response_api(
|
|
131 |
# Encode the query using the custom embedding function
|
132 |
query_embedding = embed_text(body.search_query)
|
133 |
|
134 |
-
collection_name = "
|
135 |
# Perform search using the precomputed embeddings
|
136 |
hits, error = searcher.search_documents(collection_name, query_embedding, user_id)
|
137 |
|
|
|
98 |
# Encode the query using the custom embedding function
|
99 |
query_embedding = embed_text(body.query)
|
100 |
|
101 |
+
collection_name = "embed" # Use the collection name where the embeddings are stored
|
102 |
|
103 |
# Perform search using the precomputed embeddings
|
104 |
hits, error = searcher.search_documents(collection_name, query_embedding, user_id, body.limit)
|
|
|
131 |
# Encode the query using the custom embedding function
|
132 |
query_embedding = embed_text(body.search_query)
|
133 |
|
134 |
+
collection_name = "embed" # Use the collection name where the embeddings are stored
|
135 |
# Perform search using the precomputed embeddings
|
136 |
hits, error = searcher.search_documents(collection_name, query_embedding, user_id)
|
137 |
|