smartbotic-crm-llm.service 656 B

123456789101112131415161718192021222324
  1. [Unit]
  2. Description=SmartBotic CRM LLM Service
  3. Documentation=https://github.com/smartbotic/smartbotic-crm
  4. After=network.target smartbotic-crm-database.service
  5. Requires=smartbotic-crm-database.service
  6. [Service]
  7. Type=simple
  8. WorkingDirectory=/data/smartbotic-crm
  9. ExecStart=/data/smartbotic-crm/build/llm/smartbotic-crm-llm
  10. Restart=on-failure
  11. RestartSec=5
  12. StandardOutput=journal
  13. StandardError=journal
  14. TimeoutStopSec=10
  15. # Environment
  16. Environment="SMARTBOTIC_LLM_ADDRESS=0.0.0.0"
  17. Environment="SMARTBOTIC_LLM_PORT=50052"
  18. Environment="SMARTBOTIC_LLM_DATABASE_ADDRESS=localhost:50051"
  19. Environment="SMARTBOTIC_LLM_LOG_LEVEL=info"
  20. [Install]
  21. WantedBy=default.target