Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions providers/openrouter/models/stepfun/step-3.5-flash.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name = "StepFun: Step 3.5 Flash"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To maintain the project standard, you should rename it to:

Suggested change
name = "StepFun: Step 3.5 Flash"
name = "Step 3.5 Flash"

family = "step"
release_date = "2026-01-29"
last_updated = "2026-01-29"
attachment = true
Copy link
Contributor

@cantalupo555 cantalupo555 Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The OpenRouter page for this model shows input_modalities: ["text"] only — no image support. This should be:

Suggested change
attachment = true
attachment = false

reasoning = true
temperature = true
knowledge = "2025-01"
tool_call = true
structured_output = true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No evidence in OpenRouter — the page does not mention structured output

Suggested change
structured_output = true

open_weights = true

[cost]
input = 0.50
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be wrong, the exact numbers are not yet advertised in OpenRouter

Copy link
Contributor

@cantalupo555 cantalupo555 Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will probably have the official price next week:

Step 3.5 Flash is still dominating the#1 spot on OpenRouter Trending! Huge thanks to everyone!

Try OpenRouter for free this week!

https://x.com/StepFun_ai/status/2019257979930058903

That PR was probably a little too early 😅

output = 0.80

[limit]
context = 262_144
input = 262_144
output = 65_536
Comment on lines +17 to +20
Copy link
Contributor

@cantalupo555 cantalupo555 Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Values confirmed via the OpenRouter API (/api/v1/models): context_length: 256000 and max_completion_tokens: 256000. The input field is not part of the [limit] schema and should be removed.

Suggested change
[limit]
context = 262_144
input = 262_144
output = 65_536
[limit]
context = 256_000
output = 256_000


[modalities]
input = ["text", "image"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
input = ["text", "image"]
input = ["text"]

output = ["text"]

[interleaved]
field = "reasoning_content"

[provider]
npm = "@openrouter/ai-sdk-provider"
Comment on lines +26 to +30
Copy link
Contributor

@cantalupo555 cantalupo555 Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The [interleaved] block should also be removed — most reasoning models on OpenRouter (Claude, DeepSeek, Grok, Trinity, etc.) don't include it. Reasoning works correctly without this parameter.

The [provider] block is unnecessary — npm = "@openrouter/ai-sdk-provider" is already defined in OpenRouter's provider.toml. No other model in this provider includes this block.

Suggested change
[interleaved]
field = "reasoning_content"
[provider]
npm = "@openrouter/ai-sdk-provider"