An open API service indexing awesome lists of open source software.

https://github.com/remcoder/pi-agent

A not-too-serious system agent to monitor the health of your Raspberry Pi. Uses OpenAI.
https://github.com/remcoder/pi-agent

Last synced: 6 months ago
JSON representation

A not-too-serious system agent to monitor the health of your Raspberry Pi. Uses OpenAI.

Awesome Lists containing this project

README

          

# Pi Agent - reporting the health of your Raspberry Pi via GPT

- collect system information via:
- mpstat -o JSON
- df -h
- free -h
- pgrep -f octoprint
- vcgencmd measure_temp
- ask GPT what to make of this and whether to raise an alarm
- send notification via Pushover

```mermaid
flowchart TD
A[Start] --> B[Collect System Metrics]
B --> D[Analyze Report with GPT-3]
D --> F{Is Alert Needed?}
F -->|True|G[Send Notification]
F -->|False|H[Log Status & Exit]
G --> I[End]
H --> I
```