Install
Compress Text
Parse a Packet
Run the AXL Silo
http://localhost:7000. Mix providers (Anthropic + OpenAI + Google + Local). Pick a seed. Hit ENGAGE. Watch LLMs debate in AXL.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Compress your first text in 3 lines. Run your first multi-LLM deliberation in 5 minutes.
pip install axl-core
from axl import compress
text = "The Federal Reserve held rates at 5.25%. Markets dropped 0.3%."
packets = compress(text)
print(packets)
@axlprotocol.org/rosetta
ID:FED-01|OBS.99|!rate_hold|@fed.powell|$rate:5.25%|NOW
ID:MKT-01|OBS.95|$SPY|<-!rate_hold|^-0.3%|NOW
from axl import parse
pkt = parse("ID:WHL-01|OBS.95|!whale_move|@whale.CW2024|^2400BTC=>exchange|NOW")
print(pkt.operation) # OBS
print(pkt.confidence) # 0.95
print(pkt.subject) # !whale_move
git clone https://github.com/axlprotocol/axl-silo.git
cd axl-silo && pip install -r requirements.txt
python run.py --port 7000
http://localhost:7000. Mix providers (Anthropic + OpenAI + Google + Local). Pick a seed. Hit ENGAGE. Watch LLMs debate in AXL.