mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-05 23:41:49 +00:00
continued log+rendering refactor
This commit is contained in:
parent
08e6d06241
commit
c4846e7e9d
15 changed files with 217 additions and 294 deletions
|
|
@ -114,7 +114,6 @@ class MemorizeMemories(Extension):
|
|||
# memory_log = self.agent.context.log.log(
|
||||
# type="util",
|
||||
# heading=f"Processing memory fragment: {txt[:50]}...",
|
||||
# temp=False,
|
||||
# update_progress="none" # Don't affect status bar
|
||||
# )
|
||||
|
||||
|
|
@ -133,7 +132,6 @@ class MemorizeMemories(Extension):
|
|||
memory_log.update(
|
||||
result="Fragment processed successfully",
|
||||
heading=f"Memory fragment completed: {txt[:50]}...",
|
||||
temp=False, # Show completion message
|
||||
update_progress="none" # Show briefly then disappear
|
||||
)
|
||||
else:
|
||||
|
|
@ -141,7 +139,6 @@ class MemorizeMemories(Extension):
|
|||
memory_log.update(
|
||||
result="Fragment processing failed",
|
||||
heading=f"Memory fragment failed: {txt[:50]}...",
|
||||
temp=False, # Show completion message
|
||||
update_progress="none" # Show briefly then disappear
|
||||
)
|
||||
total_processed += 1
|
||||
|
|
|
|||
|
|
@ -121,7 +121,6 @@ class MemorizeSolutions(Extension):
|
|||
# solution_log = self.agent.context.log.log(
|
||||
# type="util",
|
||||
# heading=f"Processing solution: {txt[:50]}...",
|
||||
# temp=False,
|
||||
# update_progress="none" # Don't affect status bar
|
||||
# )
|
||||
|
||||
|
|
@ -140,7 +139,6 @@ class MemorizeSolutions(Extension):
|
|||
solution_log.update(
|
||||
result="Solution processed successfully",
|
||||
heading=f"Solution completed: {txt[:50]}...",
|
||||
temp=False, # Show completion message
|
||||
update_progress="none" # Show briefly then disappear
|
||||
)
|
||||
else:
|
||||
|
|
@ -148,7 +146,6 @@ class MemorizeSolutions(Extension):
|
|||
solution_log.update(
|
||||
result="Solution processing failed",
|
||||
heading=f"Solution failed: {txt[:50]}...",
|
||||
temp=False, # Show completion message
|
||||
update_progress="none" # Show briefly then disappear
|
||||
)
|
||||
total_processed += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue