heymenn commited on
Commit
dc7a302
·
verified ·
1 Parent(s): 0832978

Update kig_core/processing.py

Browse files
Files changed (1) hide show
  1. 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 = summarize_document(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):