Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions scripts/agy-daemon.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[Unit]
Description=Host agy Daemon for LLM-Routing Gateway
Documentation=https://github.com/sheepdestroyer/LLM-Routing
After=network.target
Wants=network.target

[Service]
Type=simple
ExecStart=/usr/bin/python3 %h/dev/LLM-Routing/scripts/host_agy_daemon.py
Restart=always
RestartSec=5
StandardOutput=journal
StandardError=journal
SyslogIdentifier=agy-daemon

# Security hardening
NoNewPrivileges=yes
PrivateTmp=yes
ProtectSystem=strict
ProtectHome=read-only
ReadWritePaths=%h/.gemini /tmp
ReadOnlyPaths=%h/.local/bin/agy

[Install]
WantedBy=default.target
Loading