25%
15
# Dynamic Model Gateway Request
curl -X POST https://inference.aivax.net/v1/chat/completions \
-H "Authorization: Bearer sua_api_key" \
-d '{
"model": "claude-opus-4.7",
"messages": [{"role": "user", "content": "Olá!"}]
}'
# Connect web tools and enforce JSON Schema
{
"model": "meu-agente:v1",
"tools": ["web_search", "image_generation"],
"response_format": {
"type": "json_object"
}
}
{
"summary": "Latest AI updates...",
"status": "success"
}
curl -X POST https://inference.aivax.net/v1/chat/completions \
-H "Authorization: sua_api_key" \
-H "Content-Type: application/json" \
-d '{
"model": "meu-agente:50c3",
"messages": [
{"role": "user", "content": "Olá!"}
]
}'