cURL
curl --request POST \ --url https://api.animusai.co/v2/media/completions \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "messages": [ { "role": "user", "content": [ { "type": "image_url", "image_url": { "url": "<string>" } } ] } ], "model": "animuslabs/Qwen2-VL-NSFW-Vision-1.1", "temperature": 0.1 } '
{ "id": "<string>", "object": "<string>", "created": 123, "model": "<string>", "choices": [ { "index": 123, "message": { "role": "<string>", "content": "<string>", "tool_calls": "<array>" }, "logprobs": {}, "finish_reason": "<string>", "stop_reason": "<string>" } ], "usage": { "prompt_tokens": 123, "total_tokens": 123, "completion_tokens": 123 }, "prompt_logprobs": {} }
Generates a response based on provided images and text using a vision-language model.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Show child attributes
The vision-language model to use
"animuslabs/Qwen2-VL-NSFW-Vision-1.1"
Controls randomness in the response
The generated response for the image and text input