Skip to content

Commit 9fd4db4

Browse files
authored
Release/v4.120.0 (#9)
* cleanup package * migrate vector store to backend * complete codebase indexing + UI fixes * fix embedding endpoint
1 parent 36e6c7c commit 9fd4db4

File tree

24 files changed

+1302
-1251
lines changed

24 files changed

+1302
-1251
lines changed

apps/web-evals/src/components/home/run.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export function Run({ run, taskMetrics }: RunProps) {
136136
<AlertDialogTitle>Are you sure?</AlertDialogTitle>
137137
<AlertDialogDescription>This action cannot be undone.</AlertDialogDescription>
138138
</AlertDialogHeader>
139-
<AlertDialogFooter>
139+
<AlertDialogFooter className="flex-col gap-2 items-center justify-center">
140140
<AlertDialogCancel>Cancel</AlertDialogCancel>
141141
<AlertDialogAction ref={continueRef} onClick={onConfirmDelete}>
142142
Continue

src/api/providers/kilocode-models.ts

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -96,38 +96,38 @@ export const KILO_CODE_MODELS: Record<string, KiloCodeModel> = {
9696
input_cache_writes: "0",
9797
},
9898
},
99-
// "axon-code-pro": {
100-
// id: "axon-code-pro",
101-
// name: "Axon Code Pro",
102-
// description: "Axon Code Pro is a heavy intelligent LLM model for coding tasks",
103-
// input_modalities: ["text"],
104-
// context_length: 256000,
105-
// max_output_length: 32768,
106-
// output_modalities: ["text"],
107-
// supported_sampling_parameters: [
108-
// "temperature",
109-
// "top_p",
110-
// "top_k",
111-
// "repetition_penalty",
112-
// "frequency_penalty",
113-
// "presence_penalty",
114-
// "seed",
115-
// "stop",
116-
// ],
117-
// supported_features: ["tools", "structured_outputs", "web_search"],
118-
// openrouter: {
119-
// slug: "matterai/axon",
120-
// },
121-
// datacenters: [{ country_code: "US" }],
122-
// created: 1750426201,
123-
// owned_by: "matterai",
124-
// pricing: {
125-
// prompt: "0.000001",
126-
// completion: "0.000004",
127-
// image: "0",
128-
// request: "0",
129-
// input_cache_reads: "0",
130-
// input_cache_writes: "0",
131-
// },
132-
// },
99+
"axon-code-pro": {
100+
id: "axon-code-pro",
101+
name: "Axon Code Pro",
102+
description: "Axon Code Pro is a heavy intelligent LLM model for coding tasks",
103+
input_modalities: ["text"],
104+
context_length: 256000,
105+
max_output_length: 32768,
106+
output_modalities: ["text"],
107+
supported_sampling_parameters: [
108+
"temperature",
109+
"top_p",
110+
"top_k",
111+
"repetition_penalty",
112+
"frequency_penalty",
113+
"presence_penalty",
114+
"seed",
115+
"stop",
116+
],
117+
supported_features: ["tools", "structured_outputs", "web_search"],
118+
openrouter: {
119+
slug: "matterai/axon",
120+
},
121+
datacenters: [{ country_code: "US" }],
122+
created: 1750426201,
123+
owned_by: "matterai",
124+
pricing: {
125+
prompt: "0.000001",
126+
completion: "0.000004",
127+
image: "0",
128+
request: "0",
129+
input_cache_reads: "0",
130+
input_cache_writes: "0",
131+
},
132+
},
133133
}

src/i18n/locales/en/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"custom_storage_path_unusable": "Custom storage path \"{{path}}\" is unusable, will use default path",
5959
"cannot_access_path": "Cannot access path {{path}}: {{error}}",
6060
"settings_import_failed": "Settings import failed: {{error}}.",
61-
"mistake_limit_guidance": "This may indicate a failure in the model's thought process or inability to use a tool properly, which can be mitigated with some user guidance (e.g. \"Try breaking down the task into smaller steps\").",
61+
"mistake_limit_guidance": "Error in using tools, can be mitigated with some user guidance (e.g. \"Try breaking down the task into smaller steps\").",
6262
"violated_organization_allowlist": "Failed to run task: the current profile isn't compatible with your organization settings",
6363
"condense_failed": "Failed to condense context",
6464
"condense_not_enough_messages": "Not enough messages to condense context of {{prevContextTokens}} tokens. At least {{minimumMessageCount}} messages are required, but only {{messageCount}} are available.",

src/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
55
"publisher": "matterai",
6-
"version": "4.119.0",
6+
"version": "4.120.0",
77
"icon": "assets/icons/matterai-ic.png",
88
"galleryBanner": {
99
"color": "#FFFFFF",
@@ -90,15 +90,15 @@
9090
"viewsContainers": {
9191
"activitybar": [
9292
{
93-
"id": "kilo-code-ActivityBar",
93+
"id": "axon-code-ActivityBar",
9494
"title": "%views.activitybar.title%",
9595
"icon": "assets/icons/matterai-ic.png",
9696
"darkIcon": "assets/icons/matterai-ic.png"
9797
}
9898
]
9999
},
100100
"views": {
101-
"kilo-code-ActivityBar": [
101+
"axon-code-ActivityBar": [
102102
{
103103
"type": "webview",
104104
"id": "axon-code.SidebarProvider",
@@ -239,8 +239,8 @@
239239
"command": "axon-code.vsc.generateCommitMessage",
240240
"title": "%command.generateCommitMessage.title%",
241241
"icon": {
242-
"light": "assets/icons/kilo-light.svg",
243-
"dark": "assets/icons/kilo-dark.svg"
242+
"light": "assets/icons/matterai-ic.svg",
243+
"dark": "assets/icons/matterai-ic.svg"
244244
},
245245
"category": "%configuration.title%"
246246
},
@@ -418,24 +418,24 @@
418418
{
419419
"command": "axon-code.ghost.cancelRequest",
420420
"key": "escape",
421-
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && kilocode.ghost.isProcessing"
421+
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && axoncode.ghost.isProcessing"
422422
},
423423
{
424424
"command": "axon-code.ghost.cancelSuggestions",
425425
"key": "escape",
426-
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && kilocode.ghost.hasSuggestions"
426+
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && axoncode.ghost.hasSuggestions"
427427
},
428428
{
429429
"command": "axon-code.ghost.generateSuggestions",
430430
"key": "ctrl+l",
431431
"mac": "cmd+l",
432-
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && kilocode.ghost.enableSmartInlineTaskKeybinding && !github.copilot.completions.enabled"
432+
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && axoncode.ghost.enableSmartInlineTaskKeybinding && !github.copilot.completions.enabled"
433433
},
434434
{
435435
"command": "axon-code.ghost.showIncompatibilityExtensionPopup",
436436
"key": "ctrl+l",
437437
"mac": "cmd+l",
438-
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && kilocode.ghost.enableSmartInlineTaskKeybinding && github.copilot.completions.enabled"
438+
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && axoncode.ghost.enableSmartInlineTaskKeybinding && github.copilot.completions.enabled"
439439
},
440440
{
441441
"command": "axon-code.generateTerminalCommand",
@@ -456,13 +456,13 @@
456456
"mac": "cmd+i",
457457
"win": "ctrl+i",
458458
"linux": "ctrl+i",
459-
"when": "editorTextFocus && !github.copilot.completions.enabled && kilocode.ghost.enableQuickInlineTaskKeybinding"
459+
"when": "editorTextFocus && !github.copilot.completions.enabled && axoncode.ghost.enableQuickInlineTaskKeybinding"
460460
},
461461
{
462462
"command": "axon-code.ghost.showIncompatibilityExtensionPopup",
463463
"key": "ctrl+i",
464464
"mac": "cmd+i",
465-
"when": "editorTextFocus && github.copilot.completions.enabled && kilocode.ghost.enableQuickInlineTaskKeybinding"
465+
"when": "editorTextFocus && github.copilot.completions.enabled && axoncode.ghost.enableQuickInlineTaskKeybinding"
466466
},
467467
{
468468
"command": "axon-code.toggleAutoApprove",

src/services/code-index/__tests__/config-manager.spec.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1309,13 +1309,6 @@ describe("CodeIndexConfigManager", () => {
13091309
expect(configManager.currentEmbedderProvider).toBe("openai")
13101310
})
13111311

1312-
it("should return correct Qdrant configuration", () => {
1313-
expect(configManager.qdrantConfig).toEqual({
1314-
url: "http://qdrant.local",
1315-
apiKey: "test-qdrant-key",
1316-
})
1317-
})
1318-
13191312
it("should return correct model ID", () => {
13201313
expect(configManager.currentModelId).toBe("text-embedding-3-large")
13211314
})

0 commit comments

Comments
 (0)