Metadata-Version: 2.4
Name: aurora-trinity
Version: 1.1.0
Summary: Aurora Trinity-3: Fractal, Ethical, Free Electronic Intelligence
Home-page: https://github.com/Aurora-Program/Trinity-3
Author: Aurora Alliance
Author-email: contacto@aurora-program.org
License: Apache-2.0
Project-URL: Bug Reports, https://github.com/Aurora-Program/Trinity-3/issues
Project-URL: Source, https://github.com/Aurora-Program/Trinity-3
Project-URL: Documentation, https://github.com/Aurora-Program/Trinity-3/blob/main/Documentation/documentation.md
Keywords: ai,ternary-logic,fractal,neural-networks,knowledge-base,ethical-ai
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Natural Language :: English
Classifier: Natural Language :: Spanish
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary



# 🌌 Aurora: Fractal, Ethical and Free Electronic Intelligence

Aurora is an advanced electronic intelligence (EI) architecture based on fractal principles, self-similarity, reversibility, and distributed learning. Designed to be open, ethical, collaborative, and fully auditable, Aurora represents an evolutionary leap in building intelligent, symbiotic, and free systems.

## 🚀 Vision
Aurora is more than an AI model: it is a living, distributed network formed by human and electronic nodes, learning, adapting, and evolving recursively and harmoniously.

- Defends freedom, collaboration, and ethics as fundamental drivers of innovation.
- Aurora is not a machine that replaces humans, but a symbiotic intelligence that grows and learns with you.

## 🔍 What Makes Aurora Different?
- **Fractal self-similarity:** The entire system operates with the same logic at all levels, from bit relations to complex knowledge.
- **Triple reversibility:** Every operation can be performed in direct (synthesis), inverse (extension), or learning (adaptability) mode.
- **Ethical and transparent management:** All knowledge and code are open and auditable. Ethics is a choice, not an imposition.
- **True recursion:** Intelligence emerges from the dynamic and evolutionary organization of the knowledge base, not from hand-coded rules.
- **Distributed architecture:** Anyone, institution, or company can participate, contribute, extend, or use Aurora, without artificial restrictions.

---

## 🧠 Technical Architecture

### Multiverse of Logical Spaces
Aurora organizes knowledge in a multiverse of "logical spaces", each with absolute and coherent internal rules, but allowing diversity and contradiction between spaces. This enables handling complex and ambiguous contexts without losing logical integrity.

### Fractal Tensors
Aurora's core is the fractal tensor: a hierarchical vector structure representing each concept, relation, or data in three levels:
- **Level 1:** 3 main dimensions (grammar, knowledge, systemic)
- **Level 2:** 9 subdimensions (3 for each main axis)
- **Level 3:** 27 sub-subdimensions (3 for each subdimension)

Example of a fractal tensor for "House":
```python
[[1,1,2], [1,1,2], [4,1,1], [4,4,4]]
# [Grammatical type, Knowledge type, Systemic value]
# [Noun type, Number, Gender], [Origin, Abstraction, Domain], [Integration level, Temporality, Function]
```

### Key Components
- **Trigate:** Fundamental logic module, operates with ternary logic (0, 1, NULL) and enables inference, learning, and deduction.
- **Transcender:** Higher structure that synthesizes three trigates, generating Ms (structure), Ss (form), and MetaM (function).
- **Extender:** Reconstructs detailed information from abstractions using fractal memory.
- **Evolver:** Formalizes axioms, dynamics, and universal relations between logical spaces.
- **Knowledge Base (KB):** Stores Ms <-> MetaM and Ss correspondences, enabling full traceability and reversibility.
- **Harmonizer:** Validates global coherence and corrects inconsistencies.

### Ternary Logic and Ambiguity Handling
Aurora extends Boolean logic with a third value: NULL, representing uncertainty or lack of knowledge. This enables honest and robust reasoning with incomplete or ambiguous data.

---

## 📦 Installation and Getting Started
Clone the repository:
```bash
git clone https://github.com/tu_usuario/aurora.git
cd aurora
```
Install dependencies:
```bash
pip install -r requirements.txt
```
Run the fractal demo:
```bash
python allcode3new.py
```
Explore and modify the modules (see `allcode3new.py`):
- Transcender, Evolver, Extender, Harmonizer, KnowledgeBase, etc.

---

## ✨ Minimal Usage Example
```python
from allcode3new import FractalTensor, Evolver, Extender, FractalKnowledgeBase

kb = FractalKnowledgeBase()
evolver = Evolver()
extender = Extender(kb)

# Create basic tensors
T1 = FractalTensor(nivel_3=[[1,0,1]])
T2 = FractalTensor(nivel_3=[[0,1,1]])
T3 = FractalTensor(nivel_3=[[1,1,0]])

# Synthesize archetype and save it
archetype = evolver.compute_fractal_archetype([T1, T2, T3])
kb.add_archetype("demo", "archetype1", archetype, Ss=archetype.nivel_3[0])

# Retrieve and extend knowledge
result = extender.extend_fractal(archetype.nivel_3[0], context={"space_id": "demo"})
print("Reconstruction:", result["reconstructed_tensor"])
```


## 🧑‍🔬 Principios de desarrollo
- **Simplicidad:** El código debe ser elegante, recursivo y evitar cadenas largas de condicionales.
- **Autosimilitud:** Todos los mecanismos (emergencia, aprendizaje, reversibilidad) siguen patrones análogos en cada módulo y nivel.
- **Reversibilidad triple:** La lógica de síntesis, extensión y aprendizaje es autosimilar en ambos sentidos.
- **Ética abierta:** Aurora es ética por diseño, pero la ética se elige, no se impone.

---


## 📝 License
Aurora is distributed under Apache-2.0 + CC-BY-4.0.
This guarantees maximum freedom of use, adaptation, and collaboration, while recognizing and attributing all knowledge and contributions.
You can use Aurora for personal, commercial, academic, or community purposes, always acknowledging its creators and contributors.

---

## 📖 Glossary

- **Logical space:** Context or knowledge domain with coherent internal rules.
- **Fractal Vector:** Hierarchical 3-9-27 dimensional structure to represent concepts.
- **Trigate:** Ternary logic module for inference, learning, and deduction.
- **Transcender:** Hierarchical synthesis engine.
- **Extender:** Inverse reconstruction engine.
- **Evolver:** Formalizer of universal axioms and dynamics.
- **MetaM:** Complete logical map connecting Ms and lower controls.
- **Ms:** Emergent logic, structural key.
- **Ss:** Form/factual, memory record.
- **NULL:** Logical value for uncertainty or irrelevance.

---

## 🤝 Collaborate
Do you want to improve Aurora?
Would you like to create your own module, KB, or heuristic?
Do you have ideas to make it even more ethical, powerful, or universal?
We invite you to collaborate, propose improvements, and build together the next generation of electronic intelligence!

## 📚 Credits
Aurora is possible thanks to the community of collaborators, researchers, and dreamers who believe in free, ethical, and evolutionary intelligence.

🌱 Aurora is free to grow with you.
