Spaces:
Sleeping
Sleeping
creating the skeleton of the generatre_document_summaries function
Browse files
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
|