Files
hive/examples/templates/twitter_news_agent/config.py
T
2026-04-03 20:31:14 -07:00

23 lines
522 B
Python

"""Runtime configuration."""
from dataclasses import dataclass
from framework.config import RuntimeConfig
default_config = RuntimeConfig()
@dataclass
class AgentMetadata:
name: str = "Twitter News Digest"
version: str = "1.1.0"
description: str = (
"Monitors Twitter feeds and provides a daily news digest, focused on tech news."
)
intro_message: str = (
"I'm ready to fetch the latest tech news from Twitter. Which tech handles should I check?"
)
metadata = AgentMetadata()