Files
lucidia-main/lucidia/__init__.py
2025-08-07 15:55:58 -07:00

22 lines
569 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Lucidia AI package.
This package implements a simple conversational agent with a shortterm
memory and basic sentiment awareness. Lucidia aims to provide a more
empathetic interaction than typical chatbots by remembering past
exchanges and tailoring responses according to the emotional tone
detected in user input. See the `README.md` for an overview of the
project philosophy and usage instructions.
"""
from .core import LucidiaAI
__all__ = ["LucidiaAI"]
__version__ = "0.1.0"
from .truth_agent import TruthAgent
__all__ = ["LucidiaAI", "TruthAgent"]