isayahc commited on
Commit
f1268bf
1 Parent(s): f71d212

creating the skeleton of the generatre_document_summaries function

Browse files
Files changed (1) hide show
  1. rag_app/knowledge_base/utils.py +7 -0
rag_app/knowledge_base/utils.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from langchain_core.documents import Document
2
+
3
+
4
+ def generate_document_summaries(
5
+ docs: list[Document]
6
+ ):
7
+ pass