I don’t see it anywhere explicitly in the docs - d...
# community-help
s
I don’t see it anywhere explicitly in the docs - does typesense respect the
num_dim
setting when using openai embeddings?
E.x.
Copy code
{
      "embed": {
        "from": [
          <redacted>
        ],
        "model_config": {
          "api_key": "<redacted>",
          "model_name": "openai/text-embedding-3-large"
        }
      },
      "facet": false,
      "hnsw_params": {
        "M": 16,
        "ef_construction": 200
      },
      "index": true,
      "infix": false,
      "locale": "",
      "name": "embedding",
      "num_dim": 256,
      "optional": false,
      "sort": false,
      "stem": false,
      "store": true,
      "type": "float[]",
      "vec_dist": "cosine"
    },
f
Yes, what you set is what will actually be passed into the text embedder
s
🙏
🙌 1