WorldRouter

Models
Metatext

Llama 3.1 70B Instruct

Larger Llama instruct model for stronger open-weight reasoning and generation.

llama-3.1-70b-instruct

Quickstart

Call this model

Chat completion
curl https://inference-api.worldrouter.ai/v1/chat/completions \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3.1-70b-instruct",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'