{
  "name": "Solace Hermes CF AI Factory",
  "endpoint": "/translate",
  "method": "POST",
  "auth": "Authorization: Bearer <TOKEN>",
  "examples": {
    "chat": {
      "url": "/chat",
      "body": {
        "prompt": "Hello",
        "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"
      }
    },
    "image": {
      "url": "/image",
      "body": {
        "prompt": "futuristic AI hub",
        "model": "@cf/black-forest-labs/flux-1-schnell"
      }
    },
    "translate": {
      "url": "/translate",
      "body": {
        "text": "Hello",
        "from": "en",
        "to": "id"
      }
    },
    "embed": {
      "url": "/embed",
      "body": {
        "text": "Solace Hermes"
      }
    },
    "vision": {
      "url": "/vision",
      "body": {
        "image": [],
        "prompt": "Describe this image"
      }
    }
  }
}