We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361262a commit 4fc7e1dCopy full SHA for 4fc7e1d
1 file changed
packages/eval-tools/src/test-models.ts
@@ -38,8 +38,17 @@ function getWorkersAiModel(modelName: AiTextGenerationModels) {
38
}
39
40
export const eachModel = describe.each([
41
- getOpenAiModel('gpt-4o'),
42
- getOpenAiModel('gpt-4o-mini'),
+ //getOpenAiModel('gpt-4o'),
+ //getOpenAiModel('gpt-4o-mini'),
43
+
44
+ // error 3043 - workers-ai-provider bug
45
+ getWorkersAiModel("@cf/mistralai/mistral-small-3.1-24b-instruct"),
46
47
+ // llama 3 is very inconsistent with
48
+ getWorkersAiModel("@cf/meta/llama-3.3-70b-instruct-fp8-fast"),
49
50
+ // Currently llama 4 is having issues with tool calling
51
+ getWorkersAiModel("@cf/meta/llama-4-scout-17b-16e-instruct"),
52
53
// llama 3 is somewhat inconsistent
54
//getWorkersAiModel("@cf/meta/llama-3.3-70b-instruct-fp8-fast")
0 commit comments