Skip to content

Commit

Permalink
fix missing @types/vscode-webview dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <fbricon@gmail.com>
  • Loading branch information
fbricon committed Aug 30, 2024
1 parent e34d725 commit aae6b77
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions webviews/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions webviews/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/vscode-webview": "^1.57.5",
"@vitejs/plugin-react": "^1.0.7",
"typescript": "^4.4.4",
"vite": "^2.9.13"
Expand Down
2 changes: 1 addition & 1 deletion webviews/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function handleSetupGraniteClick() {
}
function App() {

const modelOptions: string[] = ['granite-code:3b', 'granite-code:8b', 'granite-code:20b'];
const modelOptions: string[] = ['granite-code:3b', 'granite-code:8b', 'granite-code:20b', 'granite-code:34b'];
const [tabModel, setTabModel] = useState<string>(modelOptions[0]);
const [chatModel, setChatModel] = useState<string>(modelOptions[2]);
const [status, setStatus] = useState<string>('Unknown');
Expand Down

0 comments on commit aae6b77

Please sign in to comment.