mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-11 21:30:31 +00:00
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:
parent
f94b7d742c
commit
d02dda3667
326 changed files with 1096 additions and 862 deletions
|
|
@ -1,23 +0,0 @@
|
|||
from python.helpers.api import ApiHandler, Input, Output, Request
|
||||
from python.helpers import subagents
|
||||
|
||||
|
||||
class Agents(ApiHandler):
|
||||
async def process(self, input: Input, request: Request) -> Output:
|
||||
action = input.get("action", "")
|
||||
|
||||
try:
|
||||
if action == "list":
|
||||
data = subagents.get_all_agents_list()
|
||||
else:
|
||||
raise Exception("Invalid action")
|
||||
|
||||
return {
|
||||
"ok": True,
|
||||
"data": data,
|
||||
}
|
||||
except Exception as e:
|
||||
return {
|
||||
"ok": False,
|
||||
"error": str(e),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue