Essentia (AetherOS): Difference between revisions

Jump to navigation Jump to search
AdminIsidore (talk | contribs)
Created page with "{{About|the 12 specialist AI classes of AetherOS}} '''The Essentia''' are the twelve foundational specialist AI classes that form the cognitive core of AetherOS, a next-generation AI system designed to model reality through the lens of Philosophical Realism. Each ''Essentia'' embodies a universal, timeless essence—such as "Life," "Truth," or "Purpose"—rather than transient human professions or data-driven signals associated with Nominalism. This approach..."
 
AdminIsidore (talk | contribs)
 
(2 intermediate revisions by the same user not shown)
Line 150: Line 150:
1. '''Human-Readable Glossaries''' (`ooda.wiki/wiki/[LatinName]:Glossary_of_Terms`): Curated by experts, these provide clear definitions, contexts, and examples for each essence’s core concepts. For example, `materia` in *Physica* links to physical laws and material properties.
1. '''Human-Readable Glossaries''' (`ooda.wiki/wiki/[LatinName]:Glossary_of_Terms`): Curated by experts, these provide clear definitions, contexts, and examples for each essence’s core concepts. For example, `materia` in *Physica* links to physical laws and material properties.
2. '''AI-Optimized JSONs''' (`ooda.wiki/aether/[LatinName]:Glossary_of_Terms`): Structured for training, these include terms, associations, data chunks, and SAGA parameters. Example JSON for *Physica*:
2. '''AI-Optimized JSONs''' (`ooda.wiki/aether/[LatinName]:Glossary_of_Terms`): Structured for training, these include terms, associations, data chunks, and SAGA parameters. Example JSON for *Physica*:
```json
<nowiki>
json
{
{
   "term": "materia",
   "term": "materia",
Line 161: Line 162:
   }
   }
}
}
</nowiki>
=== Pywikibot: Aquinas ===
This script demonstrates how [[Salii_(AetherOS)|Salii]] can create or edit an Essentia: entry using [[pywikibot]], leveraging SMW properties.
<nowiki>
import pywikibot
def create_essentia_entry(site, term, primary_essentia, definition, essence_connection, associations, data_chunks, saga_tunings, confidence, source):
    page_title = f"Essentia:{term}"
    page = pywikibot.Page(site, page_title)
   
    template_data = {
        'term': term,
        'primary_essentia': primary_essentia,
        'definition': definition,
        'essence_connection': essence_connection,
        'associations': associations,
        'data_chunks': data_chunks,
        'saga_tunings': saga_tunings,
        'confidence': confidence,
        'source': source
    }
   
    template_text = "{{Essentia\n"
    for key, value in template_data.items():
        if value:
            template_text += f" | {key} = {value}\n"
    template_text += "}}"
   
    page.text = template_text
    page.save(summary=f"Created/edited Essentia entry for {term} with SMW properties")
# Example usage
site = pywikibot.Site("en", "ooda")
create_essentia_entry(
    site=site,
    term="Materia",
    primary_essentia="Physica",
    definition="Fundamental substance of physical reality, encompassing mass and its properties.",
    essence_connection="Materia embodies Physica’s essence by representing the universal reality of matter, governed by physical laws such as conservation of mass and energy.",
    associations="Energia,Spatium,Causalitas",
    data_chunks="physics_laws:123,material_db:456",
    saga_tunings='{"causal_modeling": {"weight": 0.8, "goal": "predict interactions"}, "material_optimization": {"weight": 0.7, "goal": "enhance efficiency"}}',
    confidence="0.95",
    source="arXiv:1234.5678"
)
</nowiki>