SableNetwork

Embeddings

POST /v1/embeddings mirrors the OpenAI Embeddings API.

resp = client.embeddings.create(
  model="sable-embed-3-small",
  input="Confidential inference for the agent economy.",
)
vector = resp.data[0].embedding

Models

Input may be a single string or an array of strings. Same Sable privacy contract: the input is sealed on ingress, decrypted only at the egress shim, and never persisted.