Skip to content

Commit 21d5e19

Browse files
committed
Add Llama 3.2 (3B) nb
1 parent cf9dcc1 commit 21d5e19

File tree

2 files changed

+1549
-0
lines changed

2 files changed

+1549
-0
lines changed

.vscode/settings.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// jupyter
3+
"jupyter.askForKernelRestart": false,
4+
"notebook.consolidatedRunButton": true,
5+
"notebook.formatOnSave.enabled": true,
6+
"notebook.defaultFormatter": "charliermarsh.ruff",
7+
8+
// ruff
9+
"ruff.enable": true,
10+
"ruff.organizeImports": true,
11+
"ruff.importStrategy": "useBundled",
12+
"ruff.format.args": ["--line-length=120"],
13+
"ruff.lint.run": "onSave",
14+
"ruff.lint.args": [
15+
"--line-length=120",
16+
],
17+
18+
// python linter and formatter
19+
"[python]": {
20+
"editor.formatOnSave": true,
21+
"editor.defaultFormatter": "charliermarsh.ruff",
22+
"editor.codeActionsOnSave": {
23+
"source.fixAll": "never",
24+
"source.organizeImports": "explicit"
25+
}
26+
},
27+
}

0 commit comments

Comments
 (0)