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,27 +0,0 @@
from python.helpers.api import ApiHandler, Input, Output, Request, Response
from python.helpers import persist_chat
from python.helpers.task_scheduler import TaskScheduler
class Reset(ApiHandler):
async def process(self, input: Input, request: Request) -> Output:
ctxid = input.get("context", "")
# attempt to stop any scheduler tasks bound to this context
TaskScheduler.get().cancel_tasks_by_context(ctxid, terminate_thread=True)
# context instance - get or create
context = self.use_context(ctxid)
context.reset()
persist_chat.save_tmp_chat(context)
persist_chat.remove_msg_files(ctxid)
# Reset updates context metadata (log guid/version) and must refresh other tabs' lists.
from python.helpers.state_monitor_integration import mark_dirty_all
mark_dirty_all(reason="api.chat_reset.Reset")
return {
"message": "Agent restarted.",
}