DeepSeek نماذج الذكاء الاصطناعي
DeepSeek's reasoning-first LLMs — flash for fast, low-cost work and pro for complex agentic tasks, via one RunAPI key.
DeepSeek builds reasoning-first large language models. The v4 line spans deepseek-v4-flash (fast, low-cost, optional thinking) and deepseek-v4-pro (frontier reasoning and agentic work). Both are available through RunAPI from the OpenAI and Anthropic SDKs.
- مفتاح API واحد مشترك بين جميع المزودين
- تنقل model skills التوثيق والـschemas إلى مساحة عملك
- فوترة حسب كل طلب، بلا التزام
- لا تُفرض رسوم على عمليات التوليد الفاشلة
ما يميزها
جميع نماذج DeepSeek
ثبّت model skill من DeepSeek.
اختر نموذجًا وأضف مهارته حتى تحصل أداة البرمجة على التوثيق والـschemas وملاحظات الأسعار وخطوات الإعداد.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages
POST /v1beta/models/{model}:generateContent
POST /v1beta/models/{model}:streamGenerateContent
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Refactor this Python module for readability, explain each change, then add unit tests for the edge cases."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Refactor this Python module for readability, explain each change, then add unit tests for the edge cases."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "deepseek-v4-flash",
messages: [{ role: "user", content: "Refactor this Python module for readability, explain each change, then add unit tests for the edge cases." }]
});
كل إصدار من DeepSeek
الأسئلة الشائعة حول DeepSeek
هل هذا تكامل رسمي مع DeepSeek؟
يوفّر RunAPI واجهة API مُدارة مع تسعير وقدرات وسلوك أخطاء واضح وشفاف.
هل أحتاج إلى حساب DeepSeek؟
لا — يكفي مفتاح RunAPI الخاص بك للوصول المُدار.
ما مقدار زمن الاستجابة الإضافي بسبب العبور عبر البروكسي؟
عادةً أقل من 20 مللي ثانية. يحتفظ RunAPI بطبقة البروكسي قريبة من مناطق تنفيذ النماذج.
هل يتم تخزين الصور / الفيديوهات مؤقتًا؟
تُخزَّن المخرجات المُولَّدة ويمكن استرجاعها عبر معرّف المهمة. لا يتم تخزين المدخلات مؤقتًا.
هل يمكنني استخدام مفتاحي الخاص؟
ليس حاليًا — تستند الطلبات إلى وصول مُدار بواسطة RunAPI.