LLMs-from-scratch/.devcontainer/devcontainer.json
2024-02-29 08:22:53 -06:00

18 lines
361 B
JSON

{
"name": "LLMs From Scratch",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},
"runArgs": ["--runtime=nvidia", "--gpus=all"],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-azuretools.vscode-docker",
"ms-toolsai.jupyter",
"esbenp.prettier-vscode"
]
}
}
}