Back to Models

DeepSeek V4 Pro

deepseek-ai/deepseek-v4-pro Try in Playground
DeepSeek Chat

Description

DeepSeek V4 Pro by DeepSeek. This model supports chat capabilities. Main use: Reasoning. Variant: Function CallingJSON Mode.

Specifications

Context Length:
512K
Variant:
Function CallingJSON Mode
Parameters:
1.6T
Input Modalities:
Text
Output Modalities:
Text
Main Use:
Reasoning

Pricing

Input Cost:
3.48 Credits / 1M tokens
Output Cost:
6.96 Credits / 1M tokens

Usage Example

const { Client } = require('ai-proxy-sdk');

const client = new Client({
  consumerKey: process.env.BITMESH_CONSUMER_KEY,
  consumerSecret: process.env.BITMESH_CONSUMER_SECRET,
  baseUrl: process.env.BITMESH_API_BASE_URL || 'https://api.bitmesh.ai'
});

const response = await client.chat.completions.create({
  model: 'deepseek-ai/deepseek-v4-pro',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'What are some fun things to do with AI?' }
  ],
  max_tokens: 1000
});