Update App/Chat/utils/RAG.py
Browse files- App/Chat/utils/RAG.py +1 -0
App/Chat/utils/RAG.py
CHANGED
@@ -25,6 +25,7 @@ class GenerativeAIAssistant:
|
|
25 |
else:
|
26 |
self.context = summary
|
27 |
contexts=search(question,task_id=task_id)
|
|
|
28 |
context_yaml = ""
|
29 |
for context in contexts:
|
30 |
context_yaml += "\n"+ yaml.dump(context)
|
|
|
25 |
else:
|
26 |
self.context = summary
|
27 |
contexts=search(question,task_id=task_id)
|
28 |
+
print(contexts)
|
29 |
context_yaml = ""
|
30 |
for context in contexts:
|
31 |
context_yaml += "\n"+ yaml.dump(context)
|