rag / .vscode /launch.json
Deepak Sahu
first look
33080cc
raw
history blame contribute delete
714 Bytes
{
// 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 with Arguments",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/sb-rag/Scripts/gradio.exe",
"console": "integratedTerminal",
"args": [
"app.py"
],
"env": {
"HF_SERVELESS_API": "WRITE THIS"
}
}
]
}