Skip to content

Commit

Permalink
update final_summary separator
Browse files Browse the repository at this point in the history
  • Loading branch information
versun committed Apr 25, 2024
1 parent 28fe106 commit 4e1c9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def content_summarize(original_content: str,
total_tokens += response.get('tokens', 0)

# Compile final summary from partial summaries
final_summary = '/n/n'.join(accumulated_summaries)
final_summary = '<br/>'.join(accumulated_summaries)

hash64 = cityhash.CityHash64(f"Summary_{original_content}")
logging.info("[Summary] Will cache:%s", final_summary)
Expand Down

0 comments on commit 4e1c9b5

Please sign in to comment.