为什么选它
- OpenRouter 热门模型之一
- 相较 SiliconFlow 属于 BatchIn 独家差异化

StepFun
step-3.5-flash
面向低成本高速推理与智能体回路的 StepFun 高流量模型。
参数规模
196B / 11B active
上下文
128K
最大输出
32K
许可证
Apache 2.0
TTFT
160ms
吞吐
120 tok/s
为什么选它
价格与差价
快速开始
OpenAI 兼容接口,切换 base_url 即可。
from openai import OpenAI
client = OpenAI(
base_url="https://api.luminapath.tech/v1",
api_key="BATCHIN_API_KEY"
)
resp = client.chat.completions.create(
model="step-3.5-flash",
messages=[{"role": "user", "content": "Summarize why this model is a fit for my workload."}]
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.luminapath.tech/v1",
apiKey: process.env.BATCHIN_API_KEY,
});
const resp = await client.chat.completions.create({
model: "step-3.5-flash",
messages: [{ role: "user", content: "Summarize why this model is a fit for my workload." }],
});
console.log(resp.choices[0]?.message?.content);curl https://api.luminapath.tech/v1/chat/completions \
-H "Authorization: Bearer $BATCHIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "step-3.5-flash",
"messages": [{"role":"user","content":"Summarize why this model is a fit for my workload."}]
}'规格与行为
架构
MoE Transformer
厂商家族
BatchIn Exclusive
上下文
128K
最大输出
32K
适用场景
相关模型
返回模型中心