Skip to main content
Mastra 1.0 is available 🎉 Read announcement

StepFun logoStepFun

Access 3 StepFun models through Mastra's model router. Authentication is handled automatically using the STEPFUN_API_KEY environment variable.

Learn more in the StepFun documentation.

.env
STEPFUN_API_KEY=your-api-key
src/mastra/agents/my-agent.ts
import { Agent } from "@mastra/core/agent";

const agent = new Agent({
id: "my-agent",
name: "My Agent",
instructions: "You are a helpful assistant",
model: "stepfun/step-1-32k"
});

// Generate a response
const response = await agent.generate("Hello!");

// Stream a response
const stream = await agent.stream("Tell me a story");
for await (const chunk of stream) {
console.log(chunk);
}
info

Mastra uses the OpenAI-compatible /chat/completions endpoint. Some provider-specific features may not be available. Check the StepFun documentation for details.

Models
Direct link to Models

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
stepfun/step-1-32k33K$2$10
stepfun/step-2-16k16K$5$16
stepfun/step-3.5-flash256K$0.10$0.29
3 available models

Advanced Configuration
Direct link to Advanced Configuration

Custom Headers
Direct link to Custom Headers

src/mastra/agents/my-agent.ts
const agent = new Agent({
id: "custom-agent",
name: "custom-agent",
model: {
url: "https://api.stepfun.com/v1",
id: "stepfun/step-1-32k",
apiKey: process.env.STEPFUN_API_KEY,
headers: {
"X-Custom-Header": "value"
}
}
});

Dynamic Model Selection
Direct link to Dynamic Model Selection

src/mastra/agents/my-agent.ts
const agent = new Agent({
id: "dynamic-agent",
name: "Dynamic Agent",
model: ({ requestContext }) => {
const useAdvanced = requestContext.task === "complex";
return useAdvanced
? "stepfun/step-3.5-flash"
: "stepfun/step-1-32k";
}
});
On this page