Vision at the
Speed of Light

Upload an image to see DeepSeek-OCR on Luminal in action

Click to upload or drag and drop

PNG, JPG, JPEG up to 10MB

Preview

Analyzing image with DeepSeek-OCR...

⚡ Client-Side Performance Metrics
-
Tokens/Second
-
Response Time
-
Generated Tokens
-
Prompt Tokens
Extracted Text (Streaming):
Error:

Performance Benchmarks

Server-side performance metrics across different load scenarios

Prefill Performance (Tokens/Second)
Server-side POV
Decode Performance (Tokens/Second)
Server-side POV

Client-Side Metrics

427
P50 Low-Load (tok/s)
115
P50 Typical-Load (tok/s)
105
P50 High-Load (tok/s)

API Integration

Get started with a simple streaming API call

bash
curl -X POST "https://luminal.cloud/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-customer1-abc123" \
  -d '{
    "model": "deepseek-ai/DeepSeek-OCR",
    "messages": [
      {
        "role": "user",
        "content": [
          {
            "type": "text",
            "text": "Convert the document to markdown."
          },
          {
            "type": "image_url",
            "image_url": {
              "url": "https://example.com/image.jpg"
            }
          }
        ]
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.0,
    "stream": true
  }'