vhr1007 commited on
Commit
36331f1
·
verified ·
1 Parent(s): 5213518

Changing collection name

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 = "my_embeddings" # 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,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 = "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
 
 
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