@@ -381,16 +381,16 @@ func (o *Organism) Process(input string) string {
381381
382382 confidence = uint8 ((1.0 - errorMagnitude ) * 255.0 )
383383
384- // AGI DYNAMIC GROWTH TRIGGER
384+ // Dynamic growth trigger — spawn new cortex block on high error
385385 // If error is high, this concept is alien. Spawn new physical parameters!
386386 o .FractalCortex .CheckPredictionError (errorMagnitude )
387387 }
388388 }
389389 }
390390
391391 // ── 5. SPEAK (Broca) ─────────────────────────────────────────
392- // Generate a response autoregressively token-by-token (True Language Model) .
393- // If Hippocampus retrieved a memory, inject it as context (RAG behavior ).
392+ // Generate a response autoregressively through FractalCortex ternary layers .
393+ // If Hippocampus retrieved a memory, inject it as context (RAG-style ).
394394 if o .FractalCortex != nil && len (understanding .Words ) > 0 {
395395 contextWords := make ([]string , 0 , len (understanding .Words )+ 10 )
396396 if memoryUsed && memoryText != "" {
@@ -401,9 +401,9 @@ func (o *Organism) Process(input string) string {
401401 contextWords = append (contextWords , understanding .Words ... )
402402
403403 responseText = o .Broca .GenerateAutoregressive (o .FractalCortex , contextWords , o .Config .MaxGenWords )
404- if responseText != "" {
405- confidence = 255 // Generated text implies successful AGI processing
406- }
404+ // NOTE: Do NOT set confidence=255 just because text was generated.
405+ // A non-empty output does not mean a correct output. Confidence
406+ // should reflect actual quality from Prefrontal/Hippocampus pipeline.
407407 }
408408
409409 // Fallback to associative / SDR generation if autoregression didn't work or wasn't used
@@ -575,7 +575,7 @@ func (o *Organism) LearnQA(question, answer string) {
575575 context := question + " | " + answer
576576 o .Hippocampus .Store (questionSDR , answerSDR , context )
577577
578- // AGI Autoregressive Training (STDP)
578+ // FractalCortex Autoregressive Training (STDP)
579579 if o .FractalCortex != nil {
580580 // Encode the full sequence (Q | A) token by token to create a sequence array
581581 // We add "|" as a separator token so the cortex learns to transition from Q to A
0 commit comments