awareness mode
- CURIE:
gmeow:awarenessMode - IRI: https://blackcatinformatics.ca/gmeow/awarenessMode
- Category: property
- Defined by:
gmeow:slices/awareness - Box roles: RBox role (What is this?)
Relates an experiencer — a gmeow:AwarenessTenure, or directly a process or agent — to the named gmeow:AwarenessMode it is in. The DOMAIN is left intentionally OPEN: the subject is typically a gmeow:AwarenessTenure, but the edge may also tag a process or agent directly, so asserting a domain would prematurely close the surface. NOT functional, and VANTAGE-INDEXED (Principle 9): an agent's self-reported mode and an observer's attributed mode for the same span coexist, whose attribution rides gmeow:accordingTo.
Structure
Property shape: object property; ? -> gmeow:AwarenessMode
Practical Pattern
Use gmeow:awarenessMode from ? to gmeow:AwarenessMode when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Ai Inference Regime
- Source:
slices/core/awareness/examples/ai-inference-regime.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-ai-inference-regime
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- A live serving window — online inference, the machine analogue of waking. A
# claim formed within this tenure can record that it was formed during live
# serving (operational-state provenance for the agent-memory flagship).
ex:servingTenure a gmeow:AwarenessTenure ;
rdfs:label "a live serving window"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeOnlineInference ;
gmeow:awarenessScalar 0.7 ;
gmeow:duringInterval ex:requestInterval .
# --- A weight-updating training run — the machine analogue of a developmental /
# consolidative state, with no clean single human counterpart.
ex:trainingTenure a gmeow:AwarenessTenure ;
rdfs:label "a fine-tuning run"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeTraining ;
gmeow:awarenessScalar 0.5 ;
gmeow:duringInterval ex:trainingInterval .
Sleep Episode
- Source:
slices/core/awareness/examples/sleep-episode.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-sleep-episode
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- The night-long sleep tenure: an agent in a mode over an interval.
ex:lillithSleep a gmeow:AwarenessTenure ;
rdfs:label "Lillith's night of sleep"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeAsleep ;
gmeow:awarenessLevel gmeow:levelUnresponsive ;
gmeow:duringInterval ex:nightInterval .
# --- A nested REM sub-tenure: rapid-eye-movement sleep, the vivid-dreaming stage.
# The same agent, two co-applying modes (REM stage + dreaming), a shorter span
# contained within the night interval.
ex:lillithREM a gmeow:AwarenessTenure ;
rdfs:label "Lillith's REM episode"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeREM , gmeow:modeDreaming ;
gmeow:awarenessLevel gmeow:levelUnresponsive ;
gmeow:duringInterval ex:remInterval .
Common Companion Terms
Usage Advice
Use when
- Use to record the operational state of an experiencer — on a
gmeow:AwarenessTenure(the reified, interval-scoped case) or directly on a process or agent for a lightweight tag; the headline edge for AI operational-state provenance (was a claim formed duringgmeow:modeOnlineInferenceorgmeow:modeOfflineReplay).
Avoid when
- Avoid forcing one mode per subject — it is non-functional and vantage-indexed — and avoid reading it as a verdict on the content (that is
gmeow:contentOrigin/ veridicality); the mode is the experiencer-state axis only.
How to use
- Point the experiencer (preferably a
gmeow:AwarenessTenurescoped bygmeow:duringInterval) at one or moregmeow:AwarenessModeindividuals; for a contested mode let both attributions coexist and carry whose attribution it is ongmeow:accordingTo(Principle 10).
Scope notes
- State of the experiencer, not the content (Principle 9):
gmeow:awarenessModerecords WHICH operational state the experiencer is in, distinct from the content's reality-monitoring source (gmeow:contentOrigin, imagination) and from any veridicality axis. Non-functional and vantage-indexed: contested modes coexist as multiple attributions, never an overwrite.
Examples
- ex:lillithSleep
gmeow:awarenessModegmeow:modeAsleep.