Newer
Older
navi-1 / navi / profiles / __init__.py
from pathlib import Path

from .base import AgentProfile
from .loader import load_profiles_from_dir

ALL_PROFILES = load_profiles_from_dir(Path(__file__).parent)

__all__ = ["AgentProfile", "ALL_PROFILES"]