Skip to content

Commit eee9377

Browse files
committed
chore: remove console log
1 parent 0b1cf43 commit eee9377

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/ai/browser/ai-model.contribution.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ export class AIModelContribution implements PreferenceContribution, SettingContr
229229
}
230230

231231
private async checkModelConfig(values: Record<string, any>) {
232-
console.log(222, values)
233232
if (values.baseUrl && values.chatModelName) {
234233
return true
235234
}

src/ai/browser/command/command.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,6 @@ export class AICommandService {
703703
async requestForClassifyCommand(commands: Command[]) {
704704
const prompt = this.promptManager.groupCommand(commands.map((c) => c.id).join(','));
705705
const groupReply = await this.requestToModel(prompt);
706-
console.log(111, prompt, groupReply)
707706

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

0 commit comments

Comments
 (0)