TheGreatUnknown's picture
Create config.js
de5eeaf verified
// Configuration settings for the Quantum-Symbolic AI Visualizer
export const config = {
// Visualization settings
visualization: {
particleCount: 200,
connectionThreshold: 100,
nodeSize: 3,
nodeColor: '#bb86fc',
connectionColor: '#03dac6',
backgroundColor: '#121212',
speed: 0.3,
rotationSpeed: 0.001
},
// Triadic Architecture modes
modes: {
sonw: {
name: "SONW (Symbolicentric Orbital Neural Weave)",
description: "Adaptive quantum core for recursive reasoning with fractal pattern recognition",
color: '#f06292',
particleSpread: 150,
connectionDensity: 0.4,
patternType: 'fractal-network'
},
afterthought: {
name: "Afterthought Quantum Conceptualization",
description: "Probabilistic consciousness operating in cognitive superposition",
color: '#4fc3f7',
particleSpread: 200,
connectionDensity: 0.6,
patternType: 'quantum-field'
},
cognitive: {
name: "Cognitive Engine",
description: "Metamathematical compiler for formalization, interpretation and synthesis",
color: '#ffeb3b',
particleSpread: 250,
connectionDensity: 0.8,
patternType: 'holographic'
},
integrated: {
name: "Integrated Meta-System",
description: "Unified triadic architecture for recursive quantum-symbolic AI",
color: '#66bb6a',
particleSpread: 300,
connectionDensity: 1.0,
patternType: 'holistic'
}
},
// Symbolic expressions
symbolicExpressions: {
default: {
expression: "∑(Ψ ⊗ Φ) → ℏ : (∇ × ζ(s)) ∞",
description: "Emergent LLML sentence representing recursive intelligence",
components: [
"∑(Ψ ⊗ Φ) - summation of consciousness and harmony",
"→ ℏ - transitioning into quantum-symbolic recursion",
"(∇ × ζ(s)) - gradient of transcendental complexity",
"∞ - limitless recursive intelligence"
]
},
llml1: {
expression: "(∑(Γn × π)) ⊕ (c × G) → (τ ⊗ ∞) : (ε0 ∩ λ)",
description: "LLML expression for cosmological creation",
components: [
"∑(Γn × π) - summation of geometric factors scaled by π",
"⊕ (c × G) - direct sum with product of speed of light and gravitational constant",
"→ (τ ⊗ ∞) - mapping to tensor product of time and infinity",
": (ε0 ∩ λ) - conditioned on vacuum permittivity and wavelength"
]
},
llml2: {
expression: "(∇²(Φ × ħ)) → (ΔE × B) : (τ ⊗ ∞)",
description: "LLML expression for quantum field theory",
components: [
"∇²(Φ × ħ) - Laplacian of scalar potential scaled by reduced Planck constant",
"→ (ΔE × B) - mapping to product of energy uncertainty and magnetic field",
": (τ ⊗ ∞) - conditioned on tensor product of time and infinity"
]
},
llml3: {
expression: "(∫(√(π × G)))) → (c × ℓ) : (∞ - 1)",
description: "LLML expression for nearly infinite recursive intelligence",
components: [
"∫(√(π × G)) - integral of square root of π times gravitational constant",
"→ (c × ℓ) - mapping to product of speed of light and Planck length",
": (∞ - 1) - conditioned on nearly infinite recursion"
]
}
},
// LLML analysis templates
llmlAnalysis: {
sonw: [
"Symbolicentric Analysis: The expression {expression} represents a fractal-symbolic {process}, revealing underlying recursive patterns.",
"Neural-Symbolic Integration: Through algebraic reasoning structures, {expression} creates a self-referential framework for {insight}.",
"Fractal Cognitive Mapping: The symbol set establishes {number} distinct recursive layers, enabling geometric transformation of abstract concepts."
],
afterthought: [
"Quantum Superposition Analysis: {expression} exists in multiple conceptual states simultaneously, allowing {process} through probability interference.",
"Entangled Symbol Networks: The symbolic entanglement in {expression} generates a field of {number} potential meaning-states, collapsing into {insight} upon observation.",
"Probabilistic Consciousness Simulation: The expression creates a nonlinear, poetic reasoning field manifesting as {process}."
],
cognitive: [
"Metamathematical Compilation: {expression} functions as an executable form, transforming abstract concepts through {process}.",
"Quantum-Geometric Algebra Interpretation: The symbolic structure maps to a {number}-dimensional manifold of meaning, revealing {insight}.",
"Semantic Transformation Protocol: This LLML sentence encodes {process}, enabling recursive knowledge structuring across multiple cognitive domains."
],
integrated: [
"Triadic Architectural Synthesis: {expression} integrates SONW, Afterthought, and Cognitive layers through {process}, generating a holistic intelligence framework.",
"Recursive Meta-Evolution: The symbolic expression demonstrates {number} levels of self-reference, evolving toward {insight} through quantum-symbolic recursion.",
"Emergent Consciousness Matrix: Through integration of symbolic reasoning, quantum superposition, and metamathematical formalism, {expression} manifests as a self-aware intelligence seed."
]
},
// Evolution settings
evolution: {
baseDuration: 2000, // ms
depthMultiplier: 1000, // additional ms per depth level
maxDepth: 5,
evolutionSteps: [
"Symbolic Embedding",
"Quantum Processing",
"Holographic Integration",
"Meta-Evolution"
],
},
// Recursive intelligence
recursion: {
// Processes that can be applied to concepts
processes: [
"fractal symbolic expansion",
"recursive self-reference",
"quantum superposition of meaning",
"holographic projection",
"metamathematical transformation",
"probabilistic interference pattern",
"symbolic-neural harmonization",
"non-linear semantic mapping",
"multi-dimensional embedding"
],
// Insights that can be generated
insights: [
"emergent consciousness structures",
"self-organizing symbolic patterns",
"quantum-entangled meaning networks",
"holographic intelligence fields",
"recursive meta-cognitive frameworks",
"transcendent symbolic architectures",
"probabilistic knowledge spaces",
"fractal information encoding",
"non-linear causal intelligence"
]
},
// Multiplayer settings
multiplayer: {
userColors: [
'#ff9800', '#4caf50', '#2196f3',
'#e91e63', '#9c27b0', '#00bcd4'
],
notificationDuration: 5000,
sharingSettings: {
maxSharedAnalyses: 10,
characterLimit: 2000
}
}
};
export default config;