Hi there, I’d like to use Voyage AI’s embedding mo...
# community-help
s
Hi there, I’d like to use Voyage AI’s embedding models in Typesense. I tried to add an embedding field like this:
Copy code
{
  "fields": [
    {
      "name": "embedding",
      "type": "float[]",
      "embed": {
        "from": [
          "name"
        ],
        "model_config": {
          "model_name": "voyage-multilingual-2",
          "api_key": "my_api_key",
          "url": "<https://api.voyageai.com/v1/embeddings>"
        }
      }
    }
  ]
}
But this produces the error: Error: t: Request failed with HTTP code 400 | Server said: Model file not found Anybody have experience with this?