| from dataclasses import dataclass | |
| from typing import Any, Generic | |
| from .hooks import BaseAgentRunHooks | |
| from .run_context import TContext | |
| from .tool import FunctionTool | |
| class Agent(Generic[TContext]): | |
| name: str | |
| instructions: str | None = None | |
| tools: list[str | FunctionTool] | None = None | |
| run_hooks: BaseAgentRunHooks[TContext] | None = None | |
| begin_dialogs: list[Any] | None = None | |