Last refreshed 2026-04-15. Next refresh: weekly.
Why use StableLM Tuned Alpha 7B on Replicate API?
Replicate API offers StableLM Tuned Alpha 7B with competitive pricing. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Setup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"stablelm-tuned-alpha-7b",
input={"prompt": "Hello"}stablelm-tuned-alpha-7bRequest example
import replicate
# reads REPLICATE_API_TOKEN from env
# stablelm-tuned-alpha-7b format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"stablelm-tuned-alpha-7b",
input={"prompt": "Hello"}
)
# Output is a list or generator depending on the model
print("".join(output))Gotchas
- Replicate uses "owner/model-name" format (e.g. "meta/meta-llama-3-8b-instruct") for the latest version, or "owner/model-name:version-sha" to pin to a specific version. The REST endpoint splits owner and model-name into the path: /v1/models/{owner}/{model-name}/predictions.
- The examples expect REPLICATE_API_TOKEN; rename it only if your application config maps the new variable.
Capabilities
No model capability flags are currently sourced.
About StableLM Tuned Alpha 7B
Stability AI's StableLM Tuned Alpha 7B, an instruction-tuned variant of the StableLM base model. Fine-tuned for conversational and instruction-following tasks.
FAQ
What is the context window for StableLM Tuned Alpha 7B on Replicate API?
StableLM Tuned Alpha 7B supports a 4k token context window on Replicate API.
Who created StableLM Tuned Alpha 7B?
StableLM Tuned Alpha 7B was created by Stability AI as part of the StableLM model family.
Is StableLM Tuned Alpha 7B open source?
StableLM Tuned Alpha 7B has open weights under Stability AI Community License according to the seed data, but that does not necessarily mean an OSI-approved open-source license.