SeaLinkSeaLink
Log inSign up
Back to models

Llama 3.2 90B Vision

Meta (Llama)

Vision & OCRChat & customer support
model: llama-3-2-90b-vision
Try itDemo
Advanced parameters
⌘/Ctrl + Enter to send

Live demo: calls the real model (demo set). Sign up for an API key to access the full catalog.

Use cases

  • Image understanding

Code samples

cURL
curl https://api.sealink.asia/v1/chat/completions \
-H "Authorization: Bearer $SEALINK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3-2-90b-vision",
"messages": [{"role": "user", "content": "Hello."}]
}'
Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(base_url="https://api.sealink.asia/v1", api_key="<your-sealink-key>")
resp = client.chat.completions.create(
model="llama-3-2-90b-vision",
messages=[{"role": "user", "content": "Hello."}],
)
print(resp.choices[0].message.content)
Node.js (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.sealink.asia/v1",
apiKey: process.env.SEALINK_API_KEY,
});
const resp = await client.chat.completions.create({
model: "llama-3-2-90b-vision",
messages: [{ role: "user", content: "Hello." }],
});
console.log(resp.choices[0].message.content);

Once you sign in, your base_url and API key will be inlined automatically.

Performance

Last 30 days from SeaLink's own monitoring.

TTFT P50

382ms

TTFT P95

775ms

Tokens/sec

150

30d uptime

99.89%

Capabilities & limits

Context length
128K tokens
Capabilities
multimodal · streaming
Status
operational