Update services/chat_service.py
Browse files- services/chat_service.py +2 -2
services/chat_service.py
CHANGED
@@ -56,7 +56,7 @@ class ChatService:
|
|
56 |
self.faq_service = faq_service
|
57 |
self.conversation_manager = ConversationManager()
|
58 |
|
59 |
-
def search_all_sources(
|
60 |
self,
|
61 |
query: str,
|
62 |
top_k: int = 3
|
@@ -179,7 +179,7 @@ class ChatService:
|
|
179 |
(entry['user_input'], entry['response']) for entry in chat_history_raw
|
180 |
]
|
181 |
|
182 |
-
search_results = self.search_all_sources(user_input)
|
183 |
print(search_results)
|
184 |
|
185 |
context = self.build_context(search_results, chat_history_raw)
|
|
|
56 |
self.faq_service = faq_service
|
57 |
self.conversation_manager = ConversationManager()
|
58 |
|
59 |
+
async def search_all_sources(
|
60 |
self,
|
61 |
query: str,
|
62 |
top_k: int = 3
|
|
|
179 |
(entry['user_input'], entry['response']) for entry in chat_history_raw
|
180 |
]
|
181 |
|
182 |
+
search_results = await self.search_all_sources(user_input)
|
183 |
print(search_results)
|
184 |
|
185 |
context = self.build_context(search_results, chat_history_raw)
|