From c591f93da1733afc469409e28d9e4e1aa0c74998 Mon Sep 17 00:00:00 2001 From: 997146918 <997146918@qq.com> Date: Thu, 26 Jun 2025 18:59:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0vscode=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=20=E9=BB=98=E8=AE=A4=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E4=BD=BF=E7=94=A87b?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AIGC/.vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 AIGC/.vscode/launch.json diff --git a/AIGC/.vscode/launch.json b/AIGC/.vscode/launch.json new file mode 100644 index 0000000..02507d4 --- /dev/null +++ b/AIGC/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "Python Debugger: main.py", + "type": "debugpy", + "request": "launch", + "program": "main.py", + "console": "integratedTerminal", + "args": ["--model", "deepseek-r1:7b"] + } + ] +} \ No newline at end of file