update python version and add build job
All checks were successful
Disk Report Image / build-and-push-ddns (push) Successful in 22s

This commit is contained in:
2026-01-22 09:42:36 -05:00
parent addcbaf39a
commit e570df6c1b
7 changed files with 142 additions and 120 deletions

View File

@@ -1,9 +1,21 @@
# LLM Server Monitor
## summarize.sh
## Disk Report
### Run with UV
Make sure you have python uv installed.
```bash
python post_llama.py --message "summarize this document" ./example.txt
btrfs filesystem usage /btrfs/pool0 | grep 'Overall:' -A 12 > /tmp/input.txt
uv run disk_report.py --message "summarize this document" /tmp/input.txt
```
### Run with container
```bash
btrfs filesystem usage /btrfs/pool0 | grep 'Overall:' -A 12 > /tmp/input.txt
podman run -it --rm -v /tmp/input.txt:/input/input.txt:z gitea.reeseapps.com/services/disk_report:latest
```
## Prompts