You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/latest.mdx
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,55 @@ After upgrading, it's recommended to also upgrade any external extensions:
11
11
12
12
<ShellCommand>llms --update all</ShellCommand>
13
13
14
+
## Mar 3, 2026
15
+
16
+
### Support for Fireworks Large Language Models
17
+
18
+
Added support for [Fireworks AI](https://fireworks.ai) as a new provider, a fast inference platform hosting the leading open-source models including **GLM 5**, **Kimi K2.5**, **MiniMax M2.5** and **DeepSeek V3.2** at a market-leading **200 tok/s**.
All text models support **reasoning** and **tool use**, making Fireworks an excellent choice for agentic workflows where speed matters. Here's Kimi K2.5 via Fireworks creating a retro Tetris game with full tool calling support:
Then reset your providers configuration to pick up the new Fireworks models in [providers-extra.json](https://github.com/ServiceStack/llms/blob/main/llms/providers-extra.json):
Copy file name to clipboardExpand all lines: content/docs/media-generation/image-generation.mdx
+35-9Lines changed: 35 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,15 @@ description: Generate images using various LLM providers
5
5
6
6
Unlike text generation, there's no standard API for image generation across providers - each requires its own custom implementation. Despite the additional effort required, there's now seamless image generation support through both the UI and CLI with built-in integrations for:
7
7
8
-
| Provider | Status |
9
-
|------------|--------|
10
-
| Google | ✅ Supported |
11
-
| OpenAI | ✅ Supported |
12
-
| OpenRouter | ✅ Supported |
13
-
| Chutes | ✅ Supported |
14
-
| Z.ai | ✅ Supported |
15
-
| Nvidia | ✅ Supported |
8
+
| Provider | Status |
9
+
|--------------|--------|
10
+
| Google | ✅ Supported |
11
+
| OpenAI | ✅ Supported |
12
+
| OpenRouter | ✅ Supported |
13
+
| Fireworks AI | ✅ Supported |
14
+
| Chutes | ✅ Supported |
15
+
| Z.ai | ✅ Supported |
16
+
| Nvidia | ✅ Supported |
16
17
17
18
To begin select an image generation model from the Model Selector that supports image generation:
18
19
@@ -51,4 +52,29 @@ llms -m "gemini-2.5-flash-image" --out image "cat in a hat"
51
52
llms -m "Gemini 2.5 Flash Image" --out image "cat in a hat"
52
53
```
53
54
54
-
<Info>📁 All generated images are saved to `~/.llms/cache` using their SHA-256 hash as the filename.</Info>
55
+
<Info>📁 All generated images are saved to `~/.llms/cache` using their SHA-256 hash as the filename.</Info>
56
+
57
+
### Fireworks Image Generation Models
58
+
59
+
Fireworks hosts Black Forest Labs' **FLUX.1** image generation models with fast inference and competitive per-image pricing:
60
+
61
+
| Model | Cost | Pricing |
62
+
| --- | --- | --- |
63
+
|**FLUX.1 Kontext Max**| $0.08 | per image |
64
+
|**FLUX.1 Kontext Pro**| $0.04 | per image |
65
+
|**FLUX.1 Dev FP8**| $0.0005 | per step |
66
+
|**FLUX.1 Schnell FP8**| $0.00035 | per step |
67
+
68
+
This can be found in the model selector by selecting the **Image** output filter:
0 commit comments