add vscode devcontainer and launch task

This commit is contained in:
Marc R Kellerman 2023-04-13 23:06:38 -07:00
parent f76b612506
commit 5133476c78
8 changed files with 135 additions and 11 deletions

20
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Go",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go",
"args": [
"api",
"--models-path",
"/models/13B",
"--default-model",
"/models/13B/ggml-gpt4-x-alpaca-native-13b-q4_1.bin"
]
}
]
}