fix: store full AI response in convo_miner exchange chunking (#695)

This commit is contained in:
shafdev
2026-04-13 02:53:52 +05:30
committed by GitHub
parent 091c2fe1c6
commit d52d6c9622
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ def _chunk_by_exchange(lines: list) -> list:
ai_lines.append(next_line.strip())
i += 1
ai_response = " ".join(ai_lines[:8])
ai_response = " ".join(ai_lines)
content = f"{user_turn}\n{ai_response}" if ai_response else user_turn
if len(content.strip()) > MIN_CHUNK_SIZE: