Spaces:
Runtime error
Runtime error
GitHub Copilot
LOGOS v1.0: MTL Turing Complete, Genesis Kernel, SPCW Transceiver, Harmonizer
6d3aa82
| """ | |
| LOGOS Package - Logarithmic Ordering Generation Operating Software | |
| A framework for structural AI through prime factorization and tensor topology. | |
| Quick Start: | |
| from logos.mtl.interpreter import MTLInterpreter | |
| mtl = MTLInterpreter() | |
| result = mtl.execute('(mult [2] [3])') # → 6 | |
| Documentation: | |
| See logos/docs/README.md for full documentation index. | |
| """ | |
| # Core exports | |
| from .logos_core import ( | |
| PRIME_MODULO, | |
| resolve_fractal_address, | |
| prime_harmonizer, | |
| calculate_heat_code, | |
| pack_atom, | |
| unpack_atom, | |
| ) | |
| from .dsp_bridge import DSPBridge, TransmissionStats | |
| from .connectors import get_connector, LocalLLMConnector | |
| from .image_analyzer import analyze_image, batch_analyze, summarize_analysis | |
| # MTL & Memory (New Exports) | |
| from .mtl.interpreter import MTLInterpreter | |
| from .memory.prime_db import PrimeTokenDB | |
| # Agents (Lazy import to avoid circular deps) | |
| def get_dissolution_engine(): | |
| from .agents.dissolution_engine import DissolutionEngine | |
| return DissolutionEngine | |
| __all__ = [ | |
| # Core | |
| 'PRIME_MODULO', | |
| 'resolve_fractal_address', | |
| 'prime_harmonizer', | |
| 'calculate_heat_code', | |
| 'pack_atom', | |
| 'unpack_atom', | |
| # Transport | |
| 'DSPBridge', | |
| 'TransmissionStats', | |
| # Image | |
| 'analyze_image', | |
| 'batch_analyze', | |
| 'summarize_analysis', | |
| # MTL & Memory | |
| 'MTLInterpreter', | |
| 'PrimeTokenDB', | |
| # Agents | |
| 'get_dissolution_engine', | |
| ] | |
| __version__ = "0.3.0" # MTL Turing Complete + Dissolution Engine | |