20 lines
410 B
Python
20 lines
410 B
Python
|
|
"""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",
|
||
|
|
]
|