22 lines
484 B
Python
22 lines
484 B
Python
|
|
"""
|
||
|
|
Egregore Brain - AI reasoning and tool execution
|
||
|
|
|
||
|
|
This module handles:
|
||
|
|
- Claude API interactions
|
||
|
|
- System prompt generation with dynamic context
|
||
|
|
- Tool definition and execution
|
||
|
|
- Conversation processing
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .tools import TOOLS, execute_tool
|
||
|
|
from .prompts import get_system_prompt, SYSTEM_PROMPT_BASE
|
||
|
|
from .conversation import process_conversation
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"TOOLS",
|
||
|
|
"execute_tool",
|
||
|
|
"get_system_prompt",
|
||
|
|
"SYSTEM_PROMPT_BASE",
|
||
|
|
"process_conversation",
|
||
|
|
]
|