Install
openclaw skills install @runapi-ai/runapi-deepseekCall the DeepSeek API (deepseek-flash, deepseek-v4-pro, deepseek-v4-flash, and deepseek-v4-flash-vision-exp) through RunAPI using OpenAI-compatible Chat Completions and Responses. Use deepseek-flash for the current V4.1 Flash model; the v4 names remain compatibility aliases.
openclaw skills install @runapi-ai/runapi-deepseekUse OpenAI-compatible endpoints at https://runapi.ai/v1 as the primary protocol.
Set OPENAI_API_KEY to a RunAPI API key and OPENAI_BASE_URL to https://runapi.ai/v1.
from openai import OpenAI
client = OpenAI(api_key="YOUR_RUNAPI_TOKEN", base_url="https://runapi.ai/v1")
response = client.chat.completions.create(
model="deepseek-v4-pro",
messages=[{"role": "user", "content": "Explain this decision."}],
)
print(response.choices[0].message.content)
print(response.usage)
For long output, set stream=True and
stream_options={"include_usage": True}; consume through [DONE].
deepseek-v4-flash additionally supports one custom function on Responses;
keep automatic tool selection and one serial call/result lifecycle.
For image input, use deepseek-v4-flash-vision-exp with a Chat Completions
message content array containing a text part and an image_url part. The image
URL must be publicly reachable and use JPEG, PNG, GIF, or WebP.
For Chat, require final assistant content, finish_reason, and usage. For
Responses, require final output, one usage-bearing response.completed, and
[DONE] when streaming.
Correct a rejected shape once using the structured error. Retry transport once only before any response or Usage and when replay is safe. Record a terminal error and stop without changing model or protocol. Add tools, reasoning, storage, cache controls, documents, or multimodal input only when the current RunAPI contract verifies the exact model/protocol shape.
Load compatibility protocols only when an existing client requires Anthropic Messages or Gemini contents.
| Model ID | Use when |
|---|---|
deepseek-flash | Current V4.1 Flash model for fast text and reasoning |
deepseek-v4-flash-vision-exp | Image input and vision tasks |
deepseek-v4-pro | Higher-quality verified text workloads |
deepseek-v4-flash | Compatibility alias for Flash |