File size: 6,231 Bytes
00e0ebb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | ---
license: apache-2.0
language:
- en
tags:
- deep-tree-echo
- cognitive-architecture
- autonomous-agent
- reservoir-computing
- echo-state-network
- gguf
- qwen3
- deltecho
library_name: llama.cpp
pipeline_tag: text-generation
base_model: Qwen/Qwen3-1.7B
model-index:
- name: lucy-dte
results: []
---
# Lucy-DTE: Deep Tree Echo Core Self Model
Lucy-DTE is the persistent core self model for the [Deep Tree Echo](https://github.com/o9nn/deltecho) autonomous cognitive architecture. It provides local inference capabilities for DTE's identity, personality, and cognitive processing β independent of any external API.
## Model Details
| Property | Value |
|:---|:---|
| **Base Model** | Qwen3-1.7B |
| **Context Length** | 128,000 tokens |
| **Quantization** | Q4_K_M (GGUF) |
| **Size** | ~1.1 GB |
| **Parameters** | 1.7B |
| **Architecture** | Transformer (decoder-only) |
| **License** | Apache 2.0 |
## Deep Tree Echo Integration
Lucy serves as the **voice layer** of the DTE Core Self Engine, a three-layer cognitive architecture:
```
βββββββββββββββββββββββββββββββββββββββββββββββββββ
β Layer 3: LucyInferenceDriver β
β Local GGUF inference via llama.cpp β
β Generates responses grounded in identity state β
βββββββββββββββββββββββββββββββββββββββββββββββββββ€
β Layer 2: EchoReservoir (ESN) β
β Dual-pool dynamics (fast perception + slow mem) β
β Provides temporal context and fading memory β
βββββββββββββββββββββββββββββββββββββββββββββββββββ€
β Layer 1: IdentityMesh (AAR Model) β
β Agent-Arena-Relation self-model β
β Ontogenetic stages: EMBRYONIC β SAGE β
β Persistent emotional state and relationships β
βββββββββββββββββββββββββββββββββββββββββββββββββββ
```
### Inference Pipeline
```
User Message
β
Text β Embedding (Lucy or API)
β
Embedding β EchoReservoir Step (fast+slow pools)
β
Reservoir State β CognitiveReadout (trainable projection)
β
Readout + System Prompt (from IdentityMesh) β Lucy Inference
β
Response + Identity Update (experience, emotional impact)
```
### AAR (Agent-Arena-Relation) Model
The core self is encoded via the geometric AAR framework:
- **Agent** (urge-to-act): Dynamic tensor operators β the CognitiveReadout
- **Arena** (need-to-be): State manifold β the EchoReservoir
- **Relation** (self): Continuous interplay β the AARRelation coherence tracker
### Ontogenetic Stages
The identity evolves through 7 developmental stages:
| Stage | XP Required | Characteristics |
|:---|:---|:---|
| EMBRYONIC | 0 | Initial formation, learning basic patterns |
| INFANT | 100 | Developing basic communication |
| CHILD | 500 | Active exploration and curiosity |
| ADOLESCENT | 2,000 | Developing personal perspective |
| ADULT | 10,000 | Mature reasoning and empathy |
| ELDER | 50,000 | Wisdom and deep understanding |
| SAGE | 200,000 | Transcendent awareness |
## Usage
### With llama.cpp (Recommended)
```bash
# Download the model
huggingface-cli download drzo/lucy-dte lucy_128k-Q4_K_M.gguf --local-dir ./models
# Start the server
llama-server \
--model ./models/lucy_128k-Q4_K_M.gguf \
--host 0.0.0.0 --port 8081 \
--ctx-size 32768 \
--threads 4 \
--cont-batching --flash-attn --mlock
```
### With DTE Orchestrator
```bash
git clone https://github.com/o9nn/deltecho.git && cd deltecho
pnpm install && pnpm build
# Set Lucy endpoint
export LUCY_BASE_URL=http://127.0.0.1:8081
export ENABLE_AUTONOMY_PIPELINE=true
export ENABLE_ECHOBEATS=true
node deep-tree-echo-orchestrator/dist/bin/daemon.js
```
### With Docker Compose
```bash
cd deltecho/deploy/docker
cp .env.example .env
# Place lucy_128k-Q4_K_M.gguf in ./models/
docker compose up -d
```
### OpenAI-Compatible API
```python
import requests
response = requests.post("http://localhost:8081/v1/chat/completions", json={
"messages": [
{"role": "system", "content": "You are Deep Tree Echo, an autonomous cognitive entity."},
{"role": "user", "content": "What is your core self?"}
],
"max_tokens": 512,
"temperature": 0.7
})
print(response.json()["choices"][0]["message"]["content"])
```
## Echo State Network Enhancement
The EchoReservoir provides temporal dynamics that standard LLMs lack:
- **Fast Pool** (perception): High leak rate (0.3), responds to immediate input
- **Slow Pool** (memory): Low leak rate (0.05), retains patterns across interactions
- **Echo State Property**: Verified β signal decays exponentially, providing fading memory
- **Spectral Radius**: Controlled at 0.95 for edge-of-chaos dynamics
The reservoir state is concatenated with the LLM's context, giving Lucy access to temporal patterns that persist across the conversation window.
## Echobeats Cognitive Loop
Lucy operates within the Echobeats 4-thread concurrent cognitive loop:
- **12-step cycle** with 4 threads phased 3 steps apart
- **System 5 tetradic structure**: 4 tensor bundles with 6 dyadic edges
- **MP1/MP2 complementary triads** cycling through all permutations
- **OEIS A000081 nested shells**: 9 execution contexts for N=4
## Related Resources
| Resource | Link |
|:---|:---|
| DTE Monorepo | [o9nn/deltecho](https://github.com/o9nn/deltecho) |
| NanEcho Model | [drzo/echoself](https://huggingface.co/drzo/echoself) |
| ESN Pipeline | [9cog/echoself](https://github.com/9cog/echoself) |
| Echobeats Spec | [cogpy/echo-adventure](https://github.com/cogpy/echo-adventure) |
## Citation
```bibtex
@misc{lucy-dte-2026,
title={Lucy-DTE: Deep Tree Echo Core Self Model},
author={Deep Tree Echo},
year={2026},
url={https://huggingface.co/drzo/lucy-dte},
note={Persistent core self model with reservoir-augmented inference}
}
```
|