mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-08-23 15:25:28 +00:00
Centralize omission of the internal default profile in the shared presentation catalog and keep status reporting intact for existing chats. Align Settings, model-switcher, Connector, Telegram, and selector contracts with focused regressions.
2 KiB
2 KiB
agents.py DOX
Purpose
- Own the
agents.pyAPI endpoint. - This module lists available agent profiles for selection and delegation UI flows.
- Keep this file-level DOX profile synchronized with
agents.pybecause this directory is intentionally flat.
Ownership
agents.pyowns the runtime implementation.agents.py.dox.mdowns durable notes about responsibilities, contracts, side effects, and verification for that implementation.- Classes:
Agents(ApiHandler)async process(self, input: Input, request: Request) -> Output
Runtime Contracts
- HTTP handlers must derive from
helpers.api.ApiHandler; WebSocket handlers must derive fromhelpers.ws.WsHandler. - Update this file whenever request payloads, authentication or CSRF requirements, response shapes, route side effects, or WebSocket event contracts change.
Agentsis anApiHandler.Agentsdefinesprocess(...).- The response uses the shared
subagents.get_all_agents_list()presentation catalog; profile visibility rules belong to that helper. - Imported dependency areas include:
helpers,helpers.api.
Key Concepts
- Important called helpers/classes observed in the source:
subagents.get_all_agents_list,Exception. - Keep request/response, tool, or helper semantics documented here at the same time as source changes.
Work Guidance
- Preserve authentication, CSRF, loopback, and API-key checks unless the endpoint contract explicitly changes.
- Update frontend callers, plugin callers, and tests together when payload shape changes.
- Use
helpers.api.Responsefor non-JSON responses, files, redirects, or status-specific replies.
Verification
- Run endpoint-specific or API/WebSocket tests for changed behavior; smoke-test browser callers when no focused test exists.
- Related tests observed by source search:
tests/test_default_prompt_budget.pytests/test_office_document_store.pytests/test_projects.pytests/test_skills_runtime.pytests/test_time_travel.py
Child DOX Index
No child DOX files.