AgentTools / .vscode /launch.json
Brunwo
updated smolagents dept : adapted to tools structure changes
60f49cc
raw
history blame contribute delete
445 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"pythonPath": "/usr/bin/python3" ,
"env": {
"PYTHONPATH": "/home/bruno/.local/lib/python3.12/site-packages"
}
}
]
}