nexusflow
Online

DeepSeek Series

by DeepSeek AI

DeepSeek is a domestically leading open-source large model known for its extremely high cost-efficiency. It performs outstandingly in code generation and math reasoning, making it the ideal choice for budget-sensitive scenarios. Text models can be integrated via OpenAI Chat, Anthropic Messages, and Gemini-compatible three public protocols.

Integration Protocols

Core Advantages

💰
Ultra High Cost-Efficiency
Only 1/10 of peer pricing
🔓
Open & Transparent
Open-source weights auditable
💻
Coding Champion
Outstanding coding capability
🧮
Math Reasoning
Complex calculation capability

Available Models

DeepSeek V4 Pro

NEW
deepseek-v4-pro
V4FlagshipReasoning

Bailian-integrated DeepSeek V4 flagship reasoning model, suited for complex math, long routing decisions, and Code Agent tasks.

Context Window
1,000,000
Max Output
16,384
Input Price
Â¥12/M
Output Price
Â¥24/M
Complex ReasoningCode AgentFunction Calling

DeepSeek V4 Flash

NEW
deepseek-v4-flash
V4Ultra-fastHigh-Concurrency

Bailian-integrated DeepSeek V4 high-speed version. Low latency, high throughput, suited for online Q&A, customer service, and high-concurrency gateway scenarios.

Context Window
1,000,000
Max Output
16,384
Input Price
Â¥1/M
Output Price
Â¥2/M
Low LatencyHigh ThroughputOnline Chat

DeepSeek R1

NEW
deepseek-r1
ReasoningChain of Thought

Reasoning-enhanced model that analyzes complex problems via chain-of-thought reasoning. Outstanding performance in math, coding, and logical reasoning tasks.

Context Window
64,000
Max Output
8,000
Input Price
Â¥4/M
Output Price
Â¥16/M
Chain of ThoughtCode GenerationMath Reasoning

DeepSeek V3

NEW
deepseek-v3
RecommendedHigh Cost-Efficiency

Latest-generation general model using MoE architecture, comprehensively improved in coding, math, and general capabilities. Extremely cost-efficient.

Context Window
64,000
Max Output
8,000
Input Price
Â¥2/M
Output Price
Â¥8/M
Code GenerationFunction CallingMultilingual

Usage Example

from openai import OpenAI

client = OpenAI(
    api_key="sk-air-your-key",
    base_url="https://nexusflow.vip/v1",
)

# Use DeepSeek R1 for reasoning
response = client.chat.completions.create(
    model="deepseek-r1",
    messages=[
        {"role": "user", "content": "Analyze step by step: If A > B, B > C, what is the relationship between A and C?"}
    ],
    max_tokens=2048,
)

# R1 model displays the chain-of-thought process
print(response.choices[0].message.content)

Related Docs