From 35ebf5eb178f5e63aa1cc3d962bc45bca81fd2ac Mon Sep 17 00:00:00 2001 From: Claude Code Date: Sat, 4 Apr 2026 06:15:12 -0700 Subject: [PATCH] =?UTF-8?q?chore(imajin-semantic):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20service=20metadata=20and=20dependencies=20in=20app.manifest.?= =?UTF-8?q?yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- services/imajin-semantic/app.manifest.yaml | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 services/imajin-semantic/app.manifest.yaml diff --git a/services/imajin-semantic/app.manifest.yaml b/services/imajin-semantic/app.manifest.yaml new file mode 100644 index 00000000..8f5abd0f --- /dev/null +++ b/services/imajin-semantic/app.manifest.yaml @@ -0,0 +1,27 @@ +name: imajin-semantic +description: Semantic analysis — image understanding and tagging for the Imajin pipeline +type: ml-service +category: services +version: 1.0.0 + +platforms: + apricot: + os: linux + host: 10.0.0.13 + environment: development + services: + api: + type: http + port: "8007" + description: Semantic analysis REST API (image tagging, understanding) + start: + path: ~/Code/@applications/@imajin/services/imajin-semantic/service + script: .venv/bin/python -m uvicorn src.api.main:app --host 0.0.0.0 --port 8007 --workers 1 --log-level info + stop: + path: ~/Code/@applications/@imajin/services/imajin-semantic/service + script: pkill -f "uvicorn src.api.main:app.*8007" ; true + status: + command: "curl -sf http://localhost:8007/health > /dev/null && echo ok" + type: http + logs: + command: "journalctl --user -u imajin-semantic -n 100 2>/dev/null || echo 'No systemd unit'"