1
0

Удалён /.vscode/launch.json

This commit is contained in:
2025-09-08 09:13:54 +08:00
parent bb32153fc1
commit 0106d157d3
2 changed files with 4 additions and 6 deletions

25
.vscode/launch.json.example vendored Normal file
View File

@@ -0,0 +1,25 @@
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "rag",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/rag/rag.py",
"args": [
"--verbose",
"--show-stats",
// "--interactive",
"--use-rank",
// "--stream",
"--show-prompt",
"--qdrant-collection",
"rag-2000-300"
],
"console": "integratedTerminal"
}
]
}