Docs
OpenAI-compatible chat
Point any OpenAI SDK at ClickPop to use DeepSeek V4 Pro for scripts, captions, and ideas. Your requests are billed in studio credits; the upstream provider key never leaves our server.
Usage
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.ARCLIGHT_API_KEY,
baseURL: "http://localhost:3456/api/v1",
});
const reply = await client.chat.completions.create({
model: "deepseek-v4-pro",
messages: [{ role: "user", content: "Three hooks about a Monaco yacht week" }],
max_tokens: 400,
});
console.log(reply.choices[0].message.content);Limits
- Model:
deepseek-v4-pro. max_tokensup to 4000.- Streaming is not supported yet.
Next