File size: 551 Bytes
4a6af9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""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