File size: 491 Bytes
4c0cf4e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
NuWave — CPU-First AI Through Compound Substrate Optimization
Ship a model. Let it run. It gets more efficient over time.
Phase 1: KISS + Pith on the context window (frozen model)
Phase 2: Lenia dynamics on unfrozen weights (compound optimization)
Usage:
from nuwave import NuWave
nw = NuWave(model_name="microsoft/Phi-4-mini")
response = nw.chat("Hello, how are you?")
print(nw.stats()) # KISS skip rate, Pith cache hits, compound curve
"""
__version__ = "0.1.0"
|