vhr1007
commited on
Commit
·
5213518
1
Parent(s):
a80ee03
debug
Browse files
app.py
CHANGED
@@ -131,8 +131,9 @@ 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 |
# Perform search using the precomputed embeddings
|
135 |
-
hits, error = searcher.search_documents(
|
136 |
|
137 |
if error:
|
138 |
logging.error(f"Search documents error: {error}")
|
|
|
131 |
# Encode the query using the custom embedding function
|
132 |
query_embedding = embed_text(body.search_query)
|
133 |
|
134 |
+
collection_name = "my_embeddings" # 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 |
|
138 |
if error:
|
139 |
logging.error(f"Search documents error: {error}")
|