Files
fil/fixtures/embeddings/embed_texts_different_preset.json

29 lines
499 B
JSON
Raw Normal View History

2026-06-01 23:40:55 +02:00
{
"id": "embed_texts_different_preset",
"category": "embeddings",
"description": "embed_texts: multilingual preset",
"call": "embed_texts",
"input": {
"texts": ["Hello world", "Test"],
"config": {
"model": {
"type": "preset",
"name": "multilingual"
}
}
},
"assertions": [
{
"type": "not_error"
},
{
"type": "count_min",
"field": "embeddings",
"value": 2
}
],
"skip": {
"languages": ["wasm"]
}
}