Last refreshed 2026-04-19. Next refresh: weekly.
Why use Japanese Stable VLM on Fireworks AI?
Fireworks AI offers Japanese Stable VLM with pay-as-you-go pricing at $0.20/1M input tokens. Fireworks AI offers a generative AI platform as a service, focusing on rapid product iteration and cost-efficient AI deployment.
Setup recipe
Python + curlpip install openaiexport FIREWORKS_API_KEY=...import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["FIREWORKS_API_KEY"],japanese-stable-vlmRequest example
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["FIREWORKS_API_KEY"],
base_url="https://api.fireworks.ai/inference/v1"
)
response = client.chat.completions.create(
model="japanese-stable-vlm",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Gotchas
- Fireworks model IDs use "accounts/fireworks/models/{model-name}" format, e.g. "accounts/fireworks/models/llama4-scout-instruct-basic" or "accounts/fireworks/models/deepseek-r1".
- The examples expect FIREWORKS_API_KEY; rename it only if your application config maps the new variable.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.20 |
| Output tokens | $0.20 |
Capabilities
No model capability flags are currently sourced.
About Japanese Stable VLM
The Japanese Stable VLM by Stability AI is a vision-language model that specializes in generating Japanese descriptions for images and providing answers to related questions. It employs an auto-regressive architecture and is trained on a variety of public datasets, excelling in tasks such as image captioning and visual question answering. Tailored for following instructions and producing responses in Japanese that mimic human communication, this model is available for commercial use, distinguishing it from some of Stability AI's earlier models. Users are advised to consider the potential biases and limitations due to the training data.
FAQ
What does Japanese Stable VLM cost on Fireworks AI?
On Fireworks AI, Japanese Stable VLM costs $0.20 per 1M input tokens and $0.20 per 1M output tokens.
Who created Japanese Stable VLM?
Japanese Stable VLM was created by Stability AI as part of the Japanese StableLM model family.
Is Japanese Stable VLM open source?
Japanese Stable VLM's open source status is unknown in the seed data.