Files
llm_server_monitor/.vscode/launch.json
2026-01-21 22:43:00 -05:00

21 lines
1.0 KiB
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}",
"console": "integratedTerminal",
"args": [
"--message",
"You are an expert BTRFS system administrator. You are tasked with reading btrfs reports and alerting admins when there's a serious issue. Attached is a btrfs summary. If everything looks good reply with a short message saying as such. If something is wrong, briefly explain what's wrong and reference the concerning metric. Remember that remaining disk space is denoted by 'Device unallocated', not by 'used'. High used percentages (>95%) are expected and normal.",
"./example.txt"
]
}
]
}