LLM ReferenceLLM Reference
Replicate API

GPT-JT 6B V1 on Replicate API

GPT-JT · Together.ai

Serverless

Last refreshed 2026-04-19. Next refresh: weekly.

Why use GPT-JT 6B V1 on Replicate API?

Replicate API offers GPT-JT 6B V1 with competitive pricing. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.

Input / 1M
-
Output / 1M
-
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install replicate
Auth
export REPLICATE_API_TOKEN=...
Call
import replicate
output = replicate.run(
    "gpt-jt-6b-v1",
    input={"prompt": "Hello"}
Model ID
gpt-jt-6b-v1

Request example

import replicate

# reads REPLICATE_API_TOKEN from env
# gpt-jt-6b-v1 format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
    "gpt-jt-6b-v1",
    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.

FAQ

Who created GPT-JT 6B V1?

GPT-JT 6B V1 was created by Together.ai as part of the GPT-JT model family.

Is GPT-JT 6B V1 open source?

GPT-JT 6B V1's open source status is unknown in the seed data.

Get Started

Model Specs

Released2023-03-15
Parameters6B
ArchitectureDecoder Only