avfranco's picture
ea4all-mcp-lgs-sync-UAT-passed
4a6af9d
raw
history blame contribute delete
551 Bytes
"""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