# Copyright (c) 2025 ByteDance Ltd. and/or its affiliates # SPDX-License-Identifier: MIT """Agent module for Trae Agent.""" from trae_agent.agent.agent import Agent from trae_agent.agent.base_agent import BaseAgent from trae_agent.agent.trae_agent import TraeAgent __all__ = ["BaseAgent", "TraeAgent", "Agent"]