mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
fix: correct string concatenation in llm_summarizing_condenser.py (#7541)
This commit is contained in:
parent
0df87bfacc
commit
1596a6cc62
@ -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'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user