Multilingual text embeddings (74M+ runs) โ 1024-dimension vectors across 100 languages including Korean. Pairs perfectly with Core.Today customer databases' vector search (knn_vector).
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "beautyyuyanli/multilingual-e5-large",
"input": {
"texts": "[\"์ฝ์ด๋ทํฌ๋ฐ์ด๋ AI API ๊ฒ์ดํธ์จ์ด์
๋๋ค.\", \"ํฌ๋ ๋ง ๊ธฐ๋ฐ ๊ณผ๊ธ์ ์ง์ํฉ๋๋ค.\"]",
"normalize_embeddings": true
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
texts | string | No | ["In the water, fish are swimming.", "Fish swim in the water.", "A book lies open on the table."] | Texts to embed as a JSON list of strings, e.g. ["hello", "world"] |
batch_size | integer | No | 32 | Batch size for processing |
normalize_embeddings | boolean | No | true | Normalize embeddings (recommended for cosine similarity) |
Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Embed multiple Korean texts in one call
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "beautyyuyanli/multilingual-e5-large",
"input": {
"texts": "[\"์ฝ์ด๋ทํฌ๋ฐ์ด๋ AI API ๊ฒ์ดํธ์จ์ด์
๋๋ค.\", \"ํฌ๋ ๋ง ๊ธฐ๋ฐ ๊ณผ๊ธ์ ์ง์ํฉ๋๋ค.\"]",
"normalize_embeddings": true
}
}'POST /v1/predictions