Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
hsqStephenZhang committed May 2, 2024
1 parent be3ace7 commit 3b02a6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,14 @@
"default": false,
"description": "Whether to remove the deleted tabs from tabsGroup"
},
"onetab.autogroup.apikeys":{
"onetab.autogroup.apikeys": {
"scope": "resource",
"type":"object",
"type": "object",
"properties": {
"claude":{ "type":"string","default":""}
"claude": {
"type": "string",
"default": ""
}
}
}
}
Expand Down Expand Up @@ -398,6 +401,7 @@
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.8",
"class-transformer": "^0.5.1",
"jshint": "^2.13.5",
"moment": "^2.29.4",
Expand Down
2 changes: 1 addition & 1 deletion src/autogroup/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as vscode from 'vscode';
import Anthropic from '@anthropic-ai/sdk';
import { getAllTabsWithBlackList, sendTabs } from '../utils/tab';
import { Global } from '../../dist/extension';
import { Global } from '../global';

const schema = "{group_name: [file_names]}"

Expand Down

0 comments on commit 3b02a6a

Please sign in to comment.