mirror of
https://github.com/andrewyng/openworker.git
synced 2026-09-05 00:56:40 +00:00
Imported from andrewyng/aisuite@1b4bbf303e (contents of its platform/ directory, hoisted to the repo root). Development history prior to this commit lives in that repository. Co-authored-by: Devika <devikaverma11@gmail.com>
29 lines
931 B
Python
29 lines
931 B
Python
"""Agent registry — resolves a persona id to its runtime Agent.
|
|
|
|
Delegates to the persona registry (``coworker.personas``) so built-in surfaces and
|
|
markdown/third-party personas resolve through one path. MyHelper is a legacy personal-helper
|
|
persona resolved directly (kept for sessions that still reference it).
|
|
Imports of the persona registry are lazy to avoid an import cycle (personas → agents builders).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .base import Agent
|
|
from .myhelper import myhelper_agent
|
|
|
|
|
|
def get_agent(name: str) -> Agent:
|
|
name = name or "code"
|
|
if name == "myhelper":
|
|
return myhelper_agent()
|
|
from ..personas.registry import get_registry
|
|
|
|
return get_registry().agent(name)
|
|
|
|
|
|
def list_agents() -> list[dict]:
|
|
# Session surfaces shown in the new-session picker (enabled + surfaced personas).
|
|
from ..personas.registry import get_registry
|
|
|
|
return get_registry().sidebar()
|