MCPcopy Create free account
hub / github.com/bcefghj/competitive-intelligence-multi-agent / LLMConfig

Class LLMConfig

python/src/config.py:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10@dataclass(frozen=True)
11class LLMConfig:
12 provider: str = os.getenv("LLM_PROVIDER", "openai")
13 model: str = os.getenv("LLM_MODEL", "gpt-4o")
14 api_key: str = os.getenv("OPENAI_API_KEY", "")
15 temperature: float = float(os.getenv("LLM_TEMPERATURE", "0.3"))
16 max_tokens: int = int(os.getenv("LLM_MAX_TOKENS", "4096"))
17
18
19@dataclass(frozen=True)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected