Spaces:
Running
Running
Update kig_core/processing.py
Browse files- kig_core/processing.py +1 -1
kig_core/processing.py
CHANGED
@@ -110,7 +110,7 @@ def process_documents(
|
|
110 |
|
111 |
for step in processing_steps:
|
112 |
if step == "summarize":
|
113 |
-
current_content =
|
114 |
elif step == "compress":
|
115 |
current_content = compress_document(current_content)
|
116 |
elif isinstance(step, dict):
|
|
|
110 |
|
111 |
for step in processing_steps:
|
112 |
if step == "summarize":
|
113 |
+
current_content = format_summary_for_llm(doc)
|
114 |
elif step == "compress":
|
115 |
current_content = compress_document(current_content)
|
116 |
elif isinstance(step, dict):
|