Files
2125_GCE/glyphos/__init__.py
T

20 lines
410 B
Python
Raw Normal View History

2026-05-20 18:03:25 -04:00
"""GlyphOS Cognitive Kernel
A system service layer on top of LAIN cognition engine and Supercharged Glyph Registry.
Provides a clean, structured API for running cognition on GX files and managing glyph context.
"""
from .cognitive_kernel import (
CognitiveKernel,
get_kernel,
run_gx,
kernel_status,
)
__all__ = [
"CognitiveKernel",
"get_kernel",
"run_gx",
"kernel_status",
]