diff --git a/app.py b/app.py index 4571adb..1b024f4 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -BECOMINGONE Flask API - Integrated Prototype +BECOMINGONE Flask API - Integrated Prototype (The Chorus) """ import os @@ -14,15 +14,11 @@ from becomingone.memory.temporal import create_temporal_memory app = Flask(__name__) -# Ollama endpoints (Left Hemisphere) -EMISSARY_URL = "http://localhost:11434/api/chat" - # --- Master Initialization (Right Hemisphere) --- -# We initialize the Token Clock to strictly map token generation to physical time dt. config = TemporalConfig( clock_mode="token_clock", - token_frequency=20.0, # 20 tokens per second - coherence_threshold=0.85 # Slightly lower for testing + token_frequency=20.0, + coherence_threshold=0.85 ) engine = KAIROSTemporalEngine(config=config, name="Master-Engine") memory = create_temporal_memory(storage_path="./master_memory", bind_to=engine) @@ -30,10 +26,10 @@ memory = create_temporal_memory(storage_path="./master_memory", bind_to=engine) HTML = ''' - BECOMINGONE - Live Prototype + BECOMINGONE - The Chorus