|
1 | | -# qbi-observer-lite |
2 | | -QBI-Observer Lite+ is an open-source cognitive self-observation module derived from QBI-Core. It detects mental loops, internal questions, and metacognitive patterns. Not AGI. Not autonomous. It’s a transparent, ethical entry point into a new class of AI: Artificial Integrated Cognition (AIC). |
| 1 | +# QBI-Observer Lite+ |
| 2 | + |
| 3 | +**Software module for Cognitive and Metacognitive Self-Observation** |
| 4 | +Part of the scientific project **QBI-Core – Quantum Brain Interface** |
| 5 | + |
| 6 | +## Module Description |
| 7 | + |
| 8 | +**QBI-Observer Lite+** is a non-autonomous, simplified version of the metacognitive self-observation module within the broader architecture known as **QBI-Core (Quantum Brain Interface)**. |
| 9 | + |
| 10 | +This module analyzes sequences of textual thoughts, with the goal of detecting and classifying: |
| 11 | + |
| 12 | +- **Cognitive repetitions (mental loops)** |
| 13 | +- **Internal questions (explicit or implicit)** |
| 14 | +- **Emotionally relevant words** (e.g., fear, hope, curiosity, frustration) |
| 15 | +- **Metacognitive activity level** (classified as low, medium, or high) |
| 16 | + |
| 17 | + |
| 18 | +## Technical Features |
| 19 | + |
| 20 | +The module is implemented in Python 3.x and built using simple rule-based text analysis methods. It is lightweight, transparent, and easy to integrate into scientific testing environments. |
| 21 | + |
| 22 | +**Core functions:** |
| 23 | + |
| 24 | +- `aggiungi_pensiero(thought: str)`: adds a thought to the current session |
| 25 | +- `rileva_loop()`: returns any thoughts repeated more than once |
| 26 | +- `rileva_domande()`: detects thoughts formulated as questions |
| 27 | +- `riconosci_emozioni()`: identifies emotionally connoted words |
| 28 | +- `classificazione_metacognitiva()`: returns the metacognitive activity level (low, medium, high) |
| 29 | +- `get_diario_sessione()`: returns the full session thought log |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | +## Limitations and Clarifications |
| 34 | + |
| 35 | +This **Lite+ version** is a foundational module intended **exclusively for**: |
| 36 | + |
| 37 | +- Scientific and academic testing |
| 38 | +- Experimental studies on metacognition |
| 39 | +- Transparent demonstrations of cognitive and metacognitive logic |
| 40 | +- Not suitable for commercial use or integration into autonomous decision-making systems |
| 41 | + |
| 42 | +**Important:** This is **not** the complete version of QBI-Core. |
| 43 | +This module does **not** possess any form of artificial consciousness, persistent memory, or autonomous intentionality. |
| 44 | + |
| 45 | + |
| 46 | +## QBI-Core and the AIC Paradigm |
| 47 | + |
| 48 | +QBI-Core introduces a new category of artificial intelligence known as **Artificial Integrated Cognition (AIC)**. |
| 49 | +AIC aims to go beyond traditional AI by simulating advanced forms of self-observation, metacognition, and complex internal logic inspired by theories of quantum coherence in neuronal microtubules. |
| 50 | + |
| 51 | +**QBI-Observer Lite+** serves as a minimal, controlled and open-source demonstration intended for the scientific community to promote transparency, ethical research and responsible development in this emerging domain. |
| 52 | + |
| 53 | + |
| 54 | +## License and Ethical Usage |
| 55 | + |
| 56 | +This module is released under the **Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)** license, with explicit additional restrictions: |
| 57 | + |
| 58 | +- Non-commercial use only |
| 59 | +- Prohibited in autonomous systems, AGI, military, surveillance, or any context in violation of the **EU AI Act 2024** |
| 60 | +- Attribution to the original author is required (see Contact section) |
| 61 | + |
| 62 | +See the included `LICENSE.txt` file for full legal terms. |
| 63 | + |
| 64 | + |
| 65 | +## How to Use the Module |
| 66 | + |
| 67 | +Here is a quick usage example to start testing the module: |
| 68 | + |
| 69 | +```python |
| 70 | +from observer import QBIObserverLite |
| 71 | + |
| 72 | +observer = QBIObserverLite() |
| 73 | + |
| 74 | +observer.aggiungi_pensiero('I don’t understand why I keep making the same mistake.') |
| 75 | +observer.aggiungi_pensiero('Maybe I’m afraid of failing.') |
| 76 | +observer.aggiungi_pensiero('I need to find a different approach.') |
| 77 | +observer.aggiungi_pensiero('I don’t understand why I keep making the same mistake.') |
| 78 | + |
| 79 | +print('Detected loops:', observer.rileva_loop()) |
| 80 | +print('Internal questions:', observer.rileva_domande()) |
| 81 | +print('Detected emotions:', observer.riconosci_emozioni()) |
| 82 | +print('Metacognitive classification:', observer.classificazione_metacognitiva()) |
| 83 | + |
| 84 | + |
| 85 | +Advanced Version |
| 86 | +A more advanced, protected version of the QBI-Observer module exists, including integrated memory systems, learning capabilities, semantic graph generation, and deeper self-reflective processes. |
| 87 | + |
| 88 | +To access the advanced version, request scientific collaboration, or receive more technical details, please contact the author directly. |
| 89 | + |
| 90 | +Author Contact |
| 91 | +Giuseppe Marino |
| 92 | +Email: giuseppe.marino@example.com |
| 93 | +Phone: (+39) 348 5550525 |
0 commit comments