runner: always truncate embeddings requests (#12714)

This commit is contained in:
Jeffrey Morgan
2025-10-20 16:47:05 -07:00
committed by GitHub
parent d2b63c19b3
commit 5fe7ba1b9b
3 changed files with 29 additions and 2 deletions

View File

@@ -258,6 +258,19 @@ func TestAllMiniLMEmbedTruncate(t *testing.T) {
}
},
},
{
name: "boundary truncation",
request: api.EmbedRequest{
Model: "all-minilm",
Input: "why is the sky blue? Why is the sky blue? hi there my",
Options: map[string]any{"num_ctx": 16},
},
check: func(res *api.EmbedResponse, err error) {
if err != nil {
t.Fatal(err)
}
},
},
}
for _, req := range cases {