Skip to content

Commit 4f1d78e

Browse files
committed
change launch.json
1 parent 49d2831 commit 4f1d78e

1 file changed

Lines changed: 5 additions & 28 deletions

File tree

.vscode/launch.json

Lines changed: 5 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,14 @@
55
"name": "Debug HelloWorld Agent",
66
"type": "debugpy",
77
"request": "launch",
8-
"program": "${workspaceFolder}/examples/helloworld/__main__.py",
8+
"program": "${workspaceFolder}/samples/hello_world_agent.py",
99
"console": "integratedTerminal",
1010
"justMyCode": false,
11+
"python": "${workspaceFolder}/.venv/bin/python3",
12+
"cwd": "${workspaceFolder}",
1113
"env": {
12-
"PYTHONPATH": "${workspaceFolder}"
13-
},
14-
"cwd": "${workspaceFolder}/examples/helloworld",
15-
"args": [
16-
"--host",
17-
"localhost",
18-
"--port",
19-
"9999"
20-
]
21-
},
22-
{
23-
"name": "Debug Currency Agent",
24-
"type": "debugpy",
25-
"request": "launch",
26-
"program": "${workspaceFolder}/examples/langgraph/__main__.py",
27-
"console": "integratedTerminal",
28-
"justMyCode": false,
29-
"env": {
30-
"PYTHONPATH": "${workspaceFolder}"
31-
},
32-
"cwd": "${workspaceFolder}/examples/langgraph",
33-
"args": [
34-
"--host",
35-
"localhost",
36-
"--port",
37-
"10000"
38-
]
14+
"PYTHONPATH": "${workspaceFolder}/src"
15+
}
3916
},
4017
{
4118
"name": "Pytest All",

0 commit comments

Comments
 (0)