/
/Text Embeddings Inference
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 19m ago · Updated 1mo ago
Text Embeddings Inference12
  • postDecode input ids
  • postGet Embeddings. Returns a 424 status code if the model is not an embedding model.
  • postGet all Embeddings without Pooling.
  • postGet Sparse Embeddings. Returns a 424 status code if the model is not an embedding model with SPLADE pooling.
  • getHealth check method
  • getText Embeddings Inference endpoint info
  • getPrometheus metrics scrape endpoint
  • postGet Predictions. Returns a 424 status code if the model is not a Sequence Classification model
  • postGet Ranks. Returns a 424 status code if the model is not a Sequence Classification model with
  • postGet Sentence Similarity. Returns a 424 status code if the model is not an embedding model.
  • postTokenize inputs
  • postOpenAI compatible route. Returns a 424 status code if the model is not an embedding model.
    Text Embeddings Inference

    Decode input ids

    post/decode

    Request body

    skip_special_tokensboolean

    Response

    Decoded ids

    string[] required

    Example response

    [
      "test"
    ]

    Changes