为什么选它
- 仅在工作区审核通过或引导交付后开通。
- 价格仅在实时服务目录验证后展示。
StepFun
step-3.5-flash
Step 3.5 Flash 可通过审核开通或引导交付接入。
参数规模
3.5 Flash
上下文
128K
最大输出
16K
许可证
StepFun
接口
/v1/chat/completions
接入状态
审核开通
为什么选它
价格与对比
from openai import OpenAI
client = OpenAI(
base_url="https://api.batchin.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.batchin.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.batchin.tech/v1/chat/completions \
-H "Authorization: Bearer ***" \
-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"}]
}'规格与行为
架构
Dense Transformer
厂商
StepFun
上下文
128K
最大输出
16K
适用场景
相关模型
返回模型中心