Why pick it
- Standard $0.14/M with $0.10/M batch
- Good for commodity request handling
StepFun
step-3-5-flash
Fast economical route for broad low-latency text workloads
Params
3.5 Flash
Context
128K
Max Output
16K
License
StepFun
TTFT
160ms
Throughput
120 tok/s
Why pick it
Pricing
Quick start
OpenAI-compatible surface. Swap the base URL and ship
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 ***" \
-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"}]
}'Specs
Architecture
Dense Transformer
Vendor group
StepFun
Context window
128K
Max output
16K
Best for
Related models
Back to model centerByteDance
seed-1-6-flash
Low-cost flash route for lightweight inference and latency-sensitive tasks
View detailOpenAI OSS
gpt-oss-20b
Small GPT-OSS lane for cheap assistants, workers, and fallback routes
View detailMeta
llama-3-1-8b
Tiny low-cost Meta route for assistants, classifiers, and routing workers
View detailDeepSeek
deepseek-v4-flash
Fast production DeepSeek route with standard, Asia, and batch pricing lanes
View detail