{
  "status": "ok",
  "name": "Cloudflare AI Worker",
  "models": [
    "@cf/meta/llama-3.3-70b-instruct-fp8-fast",
    "@cf/meta/llama-3.1-8b-instruct",
    "@cf/meta/llama-3.1-70b-instruct",
    "@cf/mistral/mistral-7b-instruct-v0.1",
    "@cf/google/gemma-7b-it",
    "@cf/qwen/qwen1.5-7b-chat-awq",
    "@cf/microsoft/phi-2"
  ],
  "usage": {
    "endpoint": "POST /",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast",
      "messages": [
        {
          "role": "system",
          "content": "You are a helpful assistant."
        },
        {
          "role": "user",
          "content": "Hello!"
        }
      ],
      "max_tokens": 1024,
      "stream": false
    }
  }
}