Janus-Pro DeepSeek API

Autoregressive framework on the Janus Pro 7B model that unifies multimodal understanding and image generation in one architecture.

DeepSeekImage GenerationProprietary Endpoint

About Janus-Pro DeepSeek

Autoregressive framework on the Janus Pro 7B model that unifies multimodal understanding and image generation in one architecture.

visionimage generation

Janus-Pro DeepSeek specs

Model ID
janus-pro-deepseek
Provider
DeepSeek
Category
Image Generation
Input
text, image
Output
text, image
Endpoints
POST /v1/images/generations
POST /v1/chat/completions
POST /v1/images/analysis

Janus-Pro DeepSeek API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Image Generation
per image
$0.030
Image Analysis
per uploaded image
$0.030
Compare on the full pricing page

How to call the Janus-Pro DeepSeek API

Janus-Pro DeepSeek serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id janus-pro-deepseek. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "janus-pro-deepseek",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="janus-pro-deepseek",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Janus-Pro DeepSeek API reference

Janus-Pro DeepSeek API parameters

Request parameters supported by the Janus-Pro DeepSeek API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
promptstring--Text description for image generation.
generation_image_sizeenumsquaresquare, square_hd, portrait_4_3, portrait_16_9, landscape_4_3...Output image dimensions (e.g. 384x384, 768x768).
generation_temperaturenumber10.1 to 2Sampling temperature for image generation. Higher = more variation.
generation_cfg_weightnumber51 to 20Classifier-free guidance weight. Higher = closer to prompt but less creative.
generation_num_imagesnumber11 to 4How many images to generate (1-4).
generation_seednumber--Random seed for reproducibility. Same seed + prompt = same output.
image_urlstring--URL of an image to analyze (image-understanding mode).
questionstring--Question to answer about the supplied image.
analysis_temperaturenumber0.10 to 1Sampling temperature for image analysis. Higher = more variation.
analysis_top_pnumber0.950.1 to 1Nucleus sampling probability mass for image analysis.
analysis_seednumber--Random seed for analysis output reproducibility.

Good to know

Image generation and image analysis both billed per image.

Janus-Pro DeepSeek API: common questions

How much does the Janus-Pro DeepSeek API cost?

On EmpirioLabs, Janus-Pro DeepSeek is billed pay as you go: Image Generation $0.030 per image; Image Analysis $0.030 per uploaded image. The live rate card on this page always matches what the API charges.

Is the Janus-Pro DeepSeek API OpenAI-compatible?

Yes. Janus-Pro DeepSeek serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to janus-pro-deepseek.

Can I try Janus-Pro DeepSeek in the browser before integrating?

Yes. The EmpirioLabs playground runs Janus-Pro DeepSeek in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Janus-Pro DeepSeek API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Explore our models, or contact us about business inquiries, custom deployments, or anything else.