+ text-embeddings

> Text embeddings

// Converts text into vector embeddings for semantic search and similarity

aiembeddingsvectorssemantic
// aliases.json

These phrases resolve to this capability with intent-based discovery.

"embeddings" "text embeddings" "vectorize text" "semantic vectors"
// discover.sh
curl -X POST https://api.entroute.com/discover \
  -H "Content-Type: application/json" \
  -d '{"capability_id": "ai.embeddings"}'
// endpoints.json
1 results
$0.0010
https://api.blockrun.ai/v1/embeddings
success: N/A
latency: 29ms
// sample request
{
  "model": "text-embedding-ada-002",
  "input": "The quick brown fox"
}
// sample response
{
  "data": [
    {
      "embedding": [
        0.0023,
        -0.0094,
        0.0156
      ],
      "index": 0
    }
  ],
  "usage": {
    "prompt_tokens": 5
  }
}
// integrate.md

Use this capability in your agent or application: