~/llamay $ llamay serve -m qwen2.5:0.5b -addr 127.0.0.1:11439 time=2026-09-18T08:49:13.209-04:00 level=INFO msg="device graph attached" max-tokens=256 time=2026-09-18T08:49:13.210-04:00 level=INFO msg="llamay serving" addr=127.0.0.1:11439 mode l=qwen2.5:0.5b arch=qwen2 max-loaded=2 keepalive=5m0s params="0.36 GB" context=32768 threads =7 kv=f32 lexicon=0 OpenAI POST http://127.0.0.1:11439/v1/chat/completions Anthropic POST http://127.0.0.1:11439/v1/messages Embeddings POST http://127.0.0.1:11439/v1/embeddings (start with -embed ) Rerank POST http://127.0.0.1:11439/rerank (start with -rerank ) Contexts POST http://127.0.0.1:11439/v1/contexts (then /{id}/fork?n=8, /{id}/sna pshot) Models POST http://127.0.0.1:11439/api/pull (and /api/copy, /api/delete) Stats GET http://127.0.0.1:11439/v1/stats ~/llamay $ # the server stays up; the rest of this is a second terminal ~/llamay $ # OpenAI ~/llamay $ curl -s http://127.0.0.1:11439/v1/chat/completions -H 'content-type: application/ json' \ > -d '{"model":"qwen2.5:0.5b","messages":[{"role":"user","content":"Say hi."}]}' | jq -r ' .choices[0].message.content' Hello! How can I assist you today? ~/llamay $ # Anthropic ~/llamay $ curl -s http://127.0.0.1:11439/v1/messages -H 'content-type: application/json' \ > -d '{"model":"qwen2.5:0.5b","max_tokens":40,"messages":[{"role":"user","content":"Say hi ."}]}' | jq -r '.content[0].text' Hello! How can I assist you today? ~/llamay $ # Ollama ~/llamay $ curl -s http://127.0.0.1:11439/api/chat -H 'content-type: application/json' \ > -d '{"model":"qwen2.5:0.5b","stream":false,"messages":[{"role":"user","content":"Say hi. "}]}' | jq -r '.message.content' Hello! How can I assist you today? ~/llamay $ curl -s http://127.0.0.1:11439/api/tags | jq '.models[].name' "all-minilm:latest" "gemma2:2b" "gemma3:270m" "gpt2:q8_0" "qwen2.5:0.5b" "smollm2:135m" "azmx-code-test:latest"