Proposed Architecture
System Overview
The proposed FAITH architecture consists of several interconnected components organized in a modular, layered design:
flowchart TD
%% Core Library Components
subgraph FAITH["FAITH Core Library"]
direction TB
subgraph Perception["Perception System"]
SensoryInput["Sensory Input Processor"]
WorldSerializer["World Serializer"]
MemorySystem["Short-term Memory"]
end
subgraph Belief["Generative Model"]
ProbabilisticModel["Probabilistic World Model"]
PredictionEngine["Prediction Engine"]
UncertaintyEstimator["Uncertainty Estimator"]
end
subgraph Inference["Belief Updater"]
BayesianEngine["Bayesian Inference Engine"]
SurpriseCalculator["Prediction Error Calculator"]
BeliefIntegrator["Belief Integration System"]
end
subgraph Policy["Policy Selector"]
ActionEvaluator["Action Evaluator"]
EFECalculator["Expected Free Energy Calculator"]
ActionPrioritizer["Action Prioritizer"]
end
subgraph LLM["LLM Orchestration"]
RouterSystem["Reasoning Router"]
PromptGenerator["Context-Aware Prompt Generator"]
ResponseParser["Response Parser & Integrator"]
end
subgraph Core["Core Systems"]
ConfigSystem["Configuration System"]
Logging["Logging & Diagnostics"]
Profiling["Performance Profiling"]
end
end
%% Engine Integration Layer
subgraph Bindings["Engine Bindings"]
direction TB
AbstractLayer["Abstract Integration Layer"]
subgraph GameEngines["Game Engine Implementations"]
Godot["Godot Extension"]
Unreal["Unreal Plugin"]
Unity["Unity Package"]
end
subgraph Tools["Development Tools"]
Visualizer["State Visualizer"]
Debugger["Belief Debugger"]
Profiler["Performance Analyzer"]
end
end
%% External Systems
subgraph External["External Systems"]
direction TB
LocalLLM["Local LLM Runtime"]
CloudLLM["Cloud LLM Services"]
CustomSystems["Custom Game Systems"]
end
%% Connections
Perception <--> Belief
Belief <--> Inference
Inference <--> Policy
Policy --> Core
LLM <--> Belief
LLM <--> Policy
Core <--> Bindings
AbstractLayer --> GameEngines
AbstractLayer --> Tools
FAITH <--> External
Bindings <--> External
Architecture Layers
The FAITH architecture is organized into three main layers:
Core Library
The engine-agnostic foundation that implements the cognitive systems:
- Perception System
- Generative Model
- Belief Updater
- Policy Selector
- LLM Orchestration
- Core Systems
Engine Bindings
Adapters that connect the Core Library to specific game engines:
- Abstract Integration Layer
- Game Engine Implementations (Godot, Unreal, Unity)
- Development Tools
Game-Specific Systems
Customizations that adapt FAITH to particular games:
- Domain Knowledge
- Perception Customization
- Behavior Specialization
- Integration Points
Implementation Approach
The FAITH library will be implemented in modern C++ (C++17 or later) with the following considerations:
- Performance-Critical Components: Core inference and prediction systems will be optimized for real-time performance
- Modularity: Components will be designed with clear interfaces to allow selective replacement
- Scalability: The architecture will support both simple agents with minimal resources and complex agents with cloud capabilities
- Extensibility: Custom perception systems, belief structures, and action models can be integrated through well-defined extension points
Timeline
See the Development Timeline for the project schedule.