We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9f47e commit 0fe4cf4Copy full SHA for 0fe4cf4
src/services/autocomplete/__tests__/AutocompleteModel.spec.ts
@@ -31,7 +31,7 @@ describe("AutocompleteModel", () => {
31
expect(result).toBeDefined()
32
expect(Mistral).toHaveBeenCalledWith(
33
expect.objectContaining({
34
- model: "codestral-latest",
+ model: "codestral-2501",
35
apiKey: "test-mistral-key",
36
apiBase: "https://custom.mistral.ai/v1/",
37
contextLength: 32000,
@@ -78,7 +78,7 @@ describe("AutocompleteModel", () => {
78
79
expect(OpenAI).toHaveBeenCalledWith(
80
81
- model: "mistralai/codestral-2508",
82
apiKey: "test-kilocode-token",
83
}),
84
)
@@ -109,7 +109,7 @@ describe("AutocompleteModel", () => {
109
110
111
112
+ model: "mistralai/codestral-2501",
113
apiKey: "test-openrouter-key",
114
apiBase: "https://custom.openrouter.ai/api/v1",
115
0 commit comments