fix: correct string concatenation in llm_summarizing_condenser.py (#7541)

This commit is contained in:
VS 2025-03-27 16:28:45 +02:00 committed by GitHub
parent 0df87bfacc
commit 1596a6cc62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,11 +82,11 @@ CHANGES: str(val) replaces f"{val:.16G}"
DEPS: None modified
INTENT: Fix precision while maintaining FITS compliance"""
prompt + '\n\n'
prompt += '\n\n'
prompt += ('\n' + summary_event.message + '\n') if summary_event.message else ''
prompt + '\n\n'
prompt += '\n\n'
for forgotten_event in forgotten_events:
prompt += str(forgotten_event) + '\n\n'