agent-zero/python/extensions/message_loop_end/_90_save_chat.py
ehl0wr0ld 1a5ec4c264
feat: make agentcontexttype background invisible to user (#653)
Co-authored-by: Rafael Uzarowski <uzarowski.rafael@proton.me>
2025-08-07 14:40:33 +02:00

12 lines
446 B
Python

from python.helpers.extension import Extension
from agent import LoopData, AgentContextType
from python.helpers import persist_chat
class SaveChat(Extension):
async def execute(self, loop_data: LoopData = LoopData(), **kwargs):
# Skip saving BACKGROUND contexts as they should be ephemeral
if self.agent.context.type == AgentContextType.BACKGROUND:
return
persist_chat.save_tmp_chat(self.agent.context)