Spaces:
Sleeping
Sleeping
File size: 617 Bytes
ce45eb0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """Enumerations and the MVP expert taxonomy."""
from __future__ import annotations
from enum import Enum
# MVP expert taxonomy. These are typed memory partitions, NOT learned MoE experts.
EXPERTS = ("session", "profile", "semantic", "episodic", "document", "policy")
class Sensitivity(str, Enum):
public = "public"
internal = "internal"
secret = "secret"
class ApprovalState(str, Enum):
transient = "transient" # ephemeral, never persisted long-term
candidate = "candidate" # proposed durable write, awaiting approval [v1]
approved = "approved" # durable, approved
|