- scripts/provision-timmy-vps.sh: Full automated provisioning - configs/llama-server.service: Inference systemd unit - configs/timmy-agent.service: Agent harness systemd unit - docs/VPS_SETUP.md: Setup and troubleshooting guide Installs llama.cpp, Hermes-3 model, Python venv, firewall rules. Configures localhost-only inference on port 8081.
18 lines
385 B
Desktop File
18 lines
385 B
Desktop File
[Unit]
|
|
Description=Timmy Agent Harness
|
|
After=llama-server.service
|
|
Requires=llama-server.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=/root/timmy
|
|
ExecStart=/root/timmy/venv/bin/python /root/timmy/timmy-home/agent/agent_daemon.py
|
|
Restart=always
|
|
RestartSec=30
|
|
Environment="HOME=/root"
|
|
Environment="TIMMY_MODEL_URL=http://127.0.0.1:8081"
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|