User-Modeling-Agent / core /__init__.py
Israelbliz's picture
Upload 12 files
e33977d verified
raw
history blame contribute delete
571 Bytes
"""User Modeling Agent — shared intelligence core.
Modules:
config : env-loaded settings
llm : provider-agnostic LLM client (OpenAI / Gemini)
persona : behavioral persona extraction from review history
nigerian : optional style-transfer layer for Nigerian English register
reflection : self-critique and refinement loop
"""
from core.config import settings
from core.llm import LLMClient
from core.persona import PersonaEngine, UserPersona
__all__ = [
"settings",
"LLMClient",
"PersonaEngine",
"UserPersona",
]