alphagenome_agent / core /__init__.py
Paper2Agent's picture
Upload 56 files
8b54db1 verified
"""
Core module for CodeAct agent - contains shared types and utilities.
"""
from .types import AgentState, AgentConfig
from .constants import LIBRARY_CONTENT_DICT, SYSTEM_PROMPT_TEMPLATE
__all__ = ['AgentState', 'AgentConfig', 'LIBRARY_CONTENT_DICT', 'SYSTEM_PROMPT_TEMPLATE']