From 372ad0830e31da7e65735b72d59fb3dc724b171d Mon Sep 17 00:00:00 2001 From: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com> Date: Thu, 24 Jul 2025 03:05:43 -0700 Subject: [PATCH] Add __init__.py --- lucidia/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lucidia/__init__.py diff --git a/lucidia/__init__.py b/lucidia/__init__.py new file mode 100644 index 0000000..48948d9 --- /dev/null +++ b/lucidia/__init__.py @@ -0,0 +1,15 @@ +""" +Lucidia AI package. + +This package implements a simple conversational agent with a short‑term +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"