spl-agent-engine 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- spl_agent_engine/__init__.py +22 -0
- spl_agent_engine/core.py +1181 -0
- spl_agent_engine/feature/__init__.py +24 -0
- spl_agent_engine/feature/bias.py +162 -0
- spl_agent_engine/feature/goal.py +174 -0
- spl_agent_engine/feature/identity.py +162 -0
- spl_agent_engine/feature/value.py +200 -0
- spl_agent_engine/feature/world.py +143 -0
- spl_agent_engine/py.typed +0 -0
- spl_agent_engine-0.1.0.dist-info/METADATA +141 -0
- spl_agent_engine-0.1.0.dist-info/RECORD +14 -0
- spl_agent_engine-0.1.0.dist-info/WHEEL +5 -0
- spl_agent_engine-0.1.0.dist-info/licenses/LICENSE +106 -0
- spl_agent_engine-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""
|
|
2
|
+
SPL Agent Engine — Anthropomorphic Psychology Engine (SPL Pure Core V8.0)
|
|
3
|
+
|
|
4
|
+
A deterministic, continuous-state model of human mental architecture:
|
|
5
|
+
emotion fluid, trauma, memory, trust, energy metabolism, mood,
|
|
6
|
+
self-esteem, sleep/dream processing, anticipation, cognitive dissonance,
|
|
7
|
+
and defense mechanisms — no LLM, no randomness, fully replayable.
|
|
8
|
+
|
|
9
|
+
Usage:
|
|
10
|
+
from spl_agent_engine import SPLPureCore, NarrativeMapper
|
|
11
|
+
core = SPLPureCore()
|
|
12
|
+
core.process_event("insult", intensity=1.0)
|
|
13
|
+
print(core.fluid)
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from .core import SPLPureCoreV7_3, NarrativeMapper
|
|
17
|
+
|
|
18
|
+
# Canonical name for V8.0 (class name kept for backward compatibility)
|
|
19
|
+
SPLPureCore = SPLPureCoreV7_3
|
|
20
|
+
|
|
21
|
+
__version__ = "0.1.0"
|
|
22
|
+
__all__ = ["SPLPureCore", "SPLPureCoreV7_3", "NarrativeMapper"]
|