Platform

APIs and tooling to build with local, CPU-first models.

Chat Completions
curl http://localhost:8080/v1/chat.completions   -H "Authorization: Bearer $KEY"   -H "Content-Type: application/json"   -d '{
    "model": "openmachine-edge (coming-soon)",
    "messages": [{"role":"user","content":"Hello"}],
    "temperature": 0.2
  }'
Tools & Functions
{
  "tools": [{
    "type": "function",
    "function": {
      "name": "search",
      "parameters": { "type":"object", "properties": { "q": {"type":"string"} } }
    }
  }]
}