1
0
Fork 0
taleweave-ai/.vscode/launch.json

37 lines
980 B
JSON

{
// 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: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"args": [
"--world",
"worlds/cyber.json",
"--world-state",
"worlds/cyber-state.json"
],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}",
"OLLAMA_API": "http://10.2.2.81:11434",
"PACKIT_DRIVER": "ollama",
"PACKIT_MODEL": "dolphin-llama3"
}
},
{
"name": "Python Debugger: Local Attach",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 5679
},
}
]
}