Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# [0.6.0](https://code.alipay.com/cloud-ide/codefuse-ide/compare/0.5.0...0.6.0) (2024-09-29)


### Bug Fixes

* **deps:** update opensumi packages to v3.4.0 ([fe2b072](https://code.alipay.com/cloud-ide/codefuse-ide/commits/fe2b0723de6ac5d6d01656f692f58848fde018c8))


### Features

* add open logo folder menu ([b5d275c](https://code.alipay.com/cloud-ide/codefuse-ide/commits/b5d275caca26568139436e13f0eba4d5b13dda56))
* support ai lint and always show inline completions ([9cb41c0](https://code.alipay.com/cloud-ide/codefuse-ide/commits/9cb41c09e64afaa4eaa0cf032e8dcf3081586bca))



4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"electron-rebuild": "node -r ts-node/register ./build/rebuild.ts"
"electron-rebuild": "node -r ts-node/register ./build/rebuild.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -121,6 +122,7 @@
"@opensumi/tree-sitter-wasm": "0.0.2",
"@vscode/spdlog": "^0.15.0",
"buffer": "^6.0.3",
"conventional-changelog-cli": "^5.0.0",
"electron-updater": "6.2.1",
"js-yaml": "^4.1.0",
"mri": "^1.2.0",
Expand Down
1 change: 0 additions & 1 deletion src/ai/browser/ai-model.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ export class AIModelContribution implements PreferenceContribution, SettingContr
}

private async checkModelConfig(values: Record<string, any>) {
console.log(222, values)
if (values.baseUrl && values.chatModelName) {
return true
}
Expand Down
1 change: 0 additions & 1 deletion src/ai/browser/command/command.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,6 @@ export class AICommandService {
async requestForClassifyCommand(commands: Command[]) {
const prompt = this.promptManager.groupCommand(commands.map((c) => c.id).join(','));
const groupReply = await this.requestToModel(prompt);
console.log(111, prompt, groupReply)

const groupReg = new RegExp(
`\\[(?<groupName>${Object.keys(this.commandGroups).join('|')})\\]:\\s?(?<commandList>.*)`,
Expand Down
Loading