← Back to model catalog
TitanLive

Amazon Titan Embed Text v2

Provider
Proprietary models
Context
8,192 tokens
Pricing
$0.02 / 1M input · $0.00 / 1M output
APAC regions
Tokyo, Seoul, Taiwan, Mumbai, Sydney, New Zealand
Residency
in-region
Task
Embedding
APAC performance

Latency profile

Performance data will be available once this route is live.

Pricing

Input: $0.02 per 1M tokens

Output: $0.00 per 1M tokens

Billing: Per-token, charged against wallet balance

View full pricing and calculator →
Capabilities

Amazon Titan Embed Text v2 available via Amazon Bedrock.

Best for: General-purpose inference

Quickstart code snippets
Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.brightnode.cloud/v1",
    api_key="YOUR_BRIGHTNODE_API_KEY",
)

response = client.embeddings.create(
    model="amazon/titan-embed-text-v2",
    input="Your text to embed",
)
Node
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.brightnode.cloud/v1",
  apiKey: process.env.BRIGHTNODE_API_KEY,
});

const response = await client.embeddings.create({
  model: "amazon/titan-embed-text-v2",
  input: "Your text to embed",
});
Other models on Brightnode