18 lines
410 B
Python
18 lines
410 B
Python
"""Configuration for trading agents."""
|
|
|
|
from .analyst_config import AnalystConfig, get_analyst_config
|
|
from .prompt_builder import (
|
|
build_market_analyst_prompt,
|
|
build_news_analyst_prompt,
|
|
build_social_media_analyst_prompt,
|
|
)
|
|
|
|
__all__ = [
|
|
"AnalystConfig",
|
|
"get_analyst_config",
|
|
"build_market_analyst_prompt",
|
|
"build_news_analyst_prompt",
|
|
"build_social_media_analyst_prompt",
|
|
]
|
|
|