Models
Metatext
Llama 3.1 8B Instruct
Small Llama instruct model for inexpensive chat, classification, and extraction.
llama-3.1-8b-instructQuickstart
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-8b-instruct",
"messages": [
{
"role": "user",
"content": "Hello"
}
]
}'