Update launch.json
This commit is contained in:
40
.vscode/launch.json
vendored
40
.vscode/launch.json
vendored
@@ -3,35 +3,59 @@
|
|||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "idxtool-any",
|
"name": "idxtool-any",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/.scripts/idxtool.py",
|
"program": "${workspaceFolder}/Tools/openai_gpts/idxtool.py",
|
||||||
"args": ["--template", "https://chat.openai.com/g/g-svehnI9xP-retro-adventures"],
|
"args": ["--template", "https://chat.openai.com/g/g-svehnI9xP-retro-adventures"],
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "idxtool-Rebuild TOC",
|
"name": "idxtool-Rebuild TOC",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/.scripts/idxtool.py",
|
"program": "${workspaceFolder}/Tools/openai_gpts/idxtool.py",
|
||||||
"args": ["--toc"],
|
"args": ["--toc"],
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "idxtool-Find GPT File",
|
"name": "idxtool-Find GPT File",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/.scripts/idxtool.py",
|
"program": "${workspaceFolder}/Tools/openai_gpts/idxtool.py",
|
||||||
"args": ["--find-gptfile", "https://chat.openai.com/g/g-svehnI9xP-retro-adventures"],
|
"args": ["--find-gptfile", "https://chat.openai.com/g/g-svehnI9xP-retro-adventures"],
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "idxtool-Rename",
|
"name": "idxtool-Rename",
|
||||||
"type": "python",
|
"type": "debugpy",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/.scripts/idxtool.py",
|
"program": "${workspaceFolder}/Tools/openai_gpts/idxtool.py",
|
||||||
"args": ["--rename"],
|
"args": ["--rename"],
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gen_gpt_templ-Single GPT",
|
||||||
|
"type": "debugpy",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/Tools/openai_gpts/gen_gpt_templ.py",
|
||||||
|
"args": ["https://chat.openai.com/g/g-svehnI9xP-retro-adventures"],
|
||||||
|
"console": "integratedTerminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gen_gpt_templ-Response File",
|
||||||
|
"type": "debugpy",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/Tools/openai_gpts/gen_gpt_templ.py",
|
||||||
|
"args": ["@gpt_list.txt"],
|
||||||
|
"console": "integratedTerminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gen_gpt_templ-Debug Mode",
|
||||||
|
"type": "debugpy",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/Tools/openai_gpts/gen_gpt_templ.py",
|
||||||
|
"args": ["g-svehnI9xP", "--debug", "--dump"],
|
||||||
|
"console": "integratedTerminal"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user