DeepSeek Modelli IA
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.
- Una sola API key condivisa tra i provider
- I model skill portano documentazione e schema nel tuo workspace
- Fatturazione per chiamata, senza impegno
- Le generazioni non riuscite non vengono addebitate
Cosa spicca
Tutti i modelli di DeepSeek
Installa un model skill DeepSeek.
Scegli un modello e aggiungi il suo skill così il tuo editor ha documentazione, schema, note prezzi e passaggi di setup.
# 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." }]
});
Tutte le varianti di DeepSeek
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
DeepSeek
|
deepseek-v4-flash | 1K tokens | $0.010 | Visualizza → |
| deepseek-v4-pro | 1K tokens | $0.010 | Visualizza → |
Domande frequenti su DeepSeek
È un'integrazione ufficiale di DeepSeek?
RunAPI espone una superficie API gestita con prezzi, capacità e comportamento degli errori trasparenti.
Mi serve un account DeepSeek?
No — la tua chiave RunAPI è sufficiente per l’accesso gestito.
Qual è l’overhead di latenza del proxying?
In genere sotto i 20 ms. RunAPI mantiene il layer proxy vicino alle regioni di esecuzione del modello.
Le immagini / i video vengono cachati?
Gli output generati vengono salvati e possono essere recuperati tramite task ID. Gli input non vengono cachati.
Posso usare una mia chiave?
Al momento no — le chiamate usano l’accesso gestito da RunAPI.