At its core lies the Brain – an embodied cognitive system that unifies multiple memory types, a VAE compressor, a Mixture-of-Experts (MoE) layer, and an iterative GRU-based dreamstate. It’s not just a model—it’s a memory-centric mind.
- Sensory Encoding: Raw inputs are compressed through a VAE into latent codes, then fed into Short-Term Memory (STM).
- Working Memory: Integrates auditory and visual inputs with STM to produce a rich conscious signal.
- This signal is relayed into Long-Term, Autobiographical, Ethical, Prospective, and Flashbulb Memories.
- Dreamstate GRU: Continuously replays and updates inner states, echoing biological sleep and learning cycles.
- Ultimately, it forms a conscious state vector that modulates expert routing decisions.
The specialized MoE layer fuses memories, plans, and meaning to direct routing decisions with unparalleled context-awareness.
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ayjays132/PHILLNET-1" \ --host 0.0.0.0 \ --port 30000# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ayjays132/PHILLNET-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'