Text embeddings

by Embedding

embedding/openai

Create vectors from text.

Billed per
token
Price
Price: —
Provider
Embedding
Timeout
1 min

Overview

Embeds one or more nonempty texts and returns one vector per input, with token usage.

Indexed embedding vectors, model, provider, and verified token usage.

Input

These go in the input object of the run request.

FieldTypeRequiredDescription
inputarrayYesOne or more nonempty text strings.
modelstringNoEmbedding model.
Allowed: text-embedding-3-small, text-embedding-3-large
Default: "text-embedding-3-small"

Requests up to 1 MB.

Example

Use your own API key and a saved idempotency key for each new job. Replace image or media placeholders with your own publicly reachable HTTPS URLs. Keep the same key and request body when recovering a timeout.

# Set once per job; reuse this key and the identical body after a timeout.
: "${AGENTSKY_IDEMPOTENCY_KEY:?Set a unique, saved key for this job}"
curl --fail-with-body https://gateway.agentsky.dev/v1/run \
  -H "authorization: Bearer $AGENTSKY_API_KEY" \
  -H "content-type: application/json" \
  -H "Idempotency-Key: $AGENTSKY_IDEMPOTENCY_KEY" \
  -d '{"provider":"embedding","endpoint":"openai","input":{"input":["Search result text"],"model":"text-embedding-3-small"}}'
# If status is READY/RUNNING, poll GET /v1/runs/{runId} with the same API key.

Pricing

— per token using your plan when signed in. Read the final customer charge from price.amount.value after the run finishes. A RUNNING response is not the final bill.

Questions