"""Define the configurable parameters for the graph.""" from dataclasses import dataclass, field from typing import Annotated from ea4all.src.shared.configuration import BaseConfiguration @dataclass(kw_only=True) class AgentConfiguration(BaseConfiguration): """Configuration class. """ mcp_docs_model: Annotated[str, {"__template_metadata__": {"kind": "llm"}}] = field( default="gpt-4o-mini", metadata={ "description": "The language model used by ea4all_aws_ms react agent." }, ) pass