Last refreshed 2026-04-19. Next refresh: weekly.
Why use Llama 3.1 8B Instruct on Replicate API?
Replicate API offers Llama 3.1 8B Instruct with pay-as-you-go pricing at $0.25/1M input tokens. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Compare Llama 3.1 8B Instruct across 12 providers to find the best fit for your use caseSetup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"llama3.1-8b-instruct",
input={"prompt": "Hello"}llama3.1-8b-instructRequest example
import replicate
# reads REPLICATE_API_TOKEN from env
# llama3.1-8b-instruct format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"llama3.1-8b-instruct",
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.
Compare Llama 3.1 8B Instruct Across Providers
| Provider | Input (per 1M) | Output (per 1M) |
|---|---|---|
| OctoAI API (Deprecated) | $0.15 | $0.15 |
| Together AI | $0.18 | $0.18 |
| Fireworks AI | $0.20 | $0.20 |
| NVIDIA NIM | — | — |
| GroqCloud | $0.05 | $0.08 |
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.25 |
| Output tokens | $0.25 |
Capabilities
About Llama 3.1 8B Instruct
The Llama 3.1 8B Instruct model, released on July 23, 2024, is a multilingual large language model with 8 billion parameters, optimized for instruction-following tasks. It features an enhanced transformer architecture, supporting languages like English, German, French, and others. The model excels in dialogue applications, having been fine-tuned using supervised fine-tuning and reinforcement learning with human feedback. Trained on approximately 15 trillion tokens with a December 2023 data cutoff, it outperforms many existing open-source and closed chat models in various benchmarks. Ideal for commercial and research applications such as conversational agents and content generation, the model can be accessed on Hugging Face .
FAQ
What does Llama 3.1 8B Instruct cost on Replicate API?
On Replicate API, Llama 3.1 8B Instruct costs $0.25 per 1M input tokens and $0.25 per 1M output tokens.
What is the context window for Llama 3.1 8B Instruct on Replicate API?
Llama 3.1 8B Instruct supports a 128,000 token context window on Replicate API.
How does Replicate API compare to other Llama 3.1 8B Instruct providers?
Llama 3.1 8B Instruct is available from 12 providers. The cheapest input pricing is $0.02/1M tokens from OpenRouter.
Who created Llama 3.1 8B Instruct?
Llama 3.1 8B Instruct was created by AI at Meta as part of the Llama 3.1 model family.
Is Llama 3.1 8B Instruct open source?
Llama 3.1 8B Instruct is open source according to the seed data.