Llama-Guard-3-11B-Vision-Turbo
Last updated
Last updated
11B Llama 3.2 model fine-tuned for content safety, detecting harmful multimodal prompts and text in image reasoning use cases.
If you don’t have an API key for the Apilaplas API yet, feel free to use our Quickstart guide.
Creates a chat completion using a language model, allowing interactive conversation by predicting the next response based on the given chat history. This is useful for AI-driven dialogue systems and virtual assistants.
512
false
POST /v1/chat/completions HTTP/1.1
Host: api.apilaplas.com
Authorization: Bearer <YOUR_LAPLASAPI_KEY>
Content-Type: application/json
Accept: */*
Content-Length: 550
{
"model": "meta-llama/Llama-Guard-3-11B-Vision-Turbo",
"messages": [
{
"role": "system",
"content": "text",
"name": "text"
}
],
"max_tokens": 512,
"stop": "text",
"stream": false,
"stream_options": {
"include_usage": true
},
"n": 1,
"seed": 1,
"top_p": 1,
"top_k": 1,
"temperature": 1,
"repetition_penalty": 1,
"logprobs": true,
"echo": true,
"min_p": 1,
"presence_penalty": 1,
"frequency_penalty": 1,
"logit_bias": {
"ANY_ADDITIONAL_PROPERTY": 1
},
"tools": [
{
"type": "function",
"function": {
"description": "text",
"name": "text",
"parameters": null
}
}
],
"tool_choice": "none",
"response_format": {
"type": "text"
}
}
No content