24 lines
466 B
Python
24 lines
466 B
Python
|
|
"""LLMCompress
|
||
|
|
|
||
|
|
Sandbox for symbolic compression of LLM behavior using:
|
||
|
|
|
||
|
|
- GlyphOS Cognitive Kernel
|
||
|
|
- Supercharged Glyph Registry
|
||
|
|
- GlyphOS Event System
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .llm_adapter import LLMAdapter, LLMResponse
|
||
|
|
from .compression_report import CompressionReport
|
||
|
|
from .llm_compressor import (
|
||
|
|
compress_interaction,
|
||
|
|
compress_session,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"LLMAdapter",
|
||
|
|
"LLMResponse",
|
||
|
|
"CompressionReport",
|
||
|
|
"compress_interaction",
|
||
|
|
"compress_session",
|
||
|
|
]
|