BIG PYTHON REFACTOR

Python scripts moved out of python/ folder to root to be unified with plugins

+ frontend extension around api calls
This commit is contained in:
frdel 2026-03-05 17:28:11 +01:00
parent f94b7d742c
commit d02dda3667
326 changed files with 1096 additions and 862 deletions

View file

@ -1,12 +0,0 @@
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)