Files
hive/examples/templates/tech_news_reporter/config.py
T
2026-02-09 18:07:57 -08:00

22 lines
475 B
Python

"""Runtime configuration."""
from dataclasses import dataclass
from framework.config import RuntimeConfig
default_config = RuntimeConfig()
@dataclass
class AgentMetadata:
name: str = "Tech & AI News Reporter"
version: str = "1.0.0"
description: str = (
"Research the latest technology and AI news from the web, "
"summarize key stories, and produce a well-organized report "
"for the user to read."
)
metadata = AgentMetadata()