Chris4K commited on
Commit
c0aba14
·
verified ·
1 Parent(s): fb718a3

Update services/chat_service.py

Browse files
Files changed (1) hide show
  1. services/chat_service.py +2 -2
services/chat_service.py CHANGED
@@ -70,8 +70,8 @@ class ChatService:
70
 
71
  # Await the search calls since they're coroutines
72
  products = await self.data_service.search(query, top_k)
73
- #pdfs = await self.pdf_service.search(query, top_k)
74
- #faqs = await self.faq_service.search_faqs(query, top_k)
75
 
76
  results = {
77
  'products': products or [],
 
70
 
71
  # Await the search calls since they're coroutines
72
  products = await self.data_service.search(query, top_k)
73
+ pdfs = await self.pdf_service.search(query, top_k)
74
+ faqs = await self.faq_service.search_faqs(query, top_k)
75
 
76
  results = {
77
  'products': products or [],