# [spam] # draft snippets from dataclasses import dataclass
@dataclass
class InformationExperience:
data : str
reason : object # placeholder for things like who-said-it, or
why-we-think-it-is-likely, or confidence
@dataclass
class Belief:
uuid : int
phrasings : [InformationExperience]
@dataclass
class BeliefLogc:
# tracks uuids of shared beliefs
@dataclass
class Believer:
# an entity with a set of hypothesised beliefs
