winter-25/ │ ├── app.py # Main entry point, Gradio UI, initialization ├── agent.py # Contains ReactAgent and Tool classes (WikipediaTool, MemorySearchTool, etc.) ├── consciousness.py # Contains ConsciousnessLoop class and related logic ├── llmEngine.py # LocalLLM and LLM provider abstraction ├── memory.py # MemorySystem, VectorMemory, Scratchpad, data classes (Memory, Experience, Dream, Scene) ├── requirements.txt # Dependencies ├── .env # Hugging Face token and secrets ├── chroma_db/ # ChromaDB persistence directory ├── logs/ │ ├── consciousness.log │ ├── llm_interactions.log │ └── internal_dialogue.log └── tools/ # (Optional) Additional tool implementations