feat: update rommie model, reassign service ports, and fix deploy health check

- Upgrade rommie model from Qwen3-VL-30B-A3B to Qwen3.5-35B-A3B-UD-Q4_K_XL
  and update model URL port to 22079
- Reassign freecad_mcp_port (22032 -> 22063) and kernos_port
  (20201 -> 22062) for consistent port numbering
- Flush handlers before health check to ensure systemd reload
  completes before verifying the endpoint
- Update expected MCP health check status code from 405 to 406
This commit is contained in:
2026-04-05 00:15:28 +00:00
parent 58b7f4139f
commit cac18dc61f
2 changed files with 9 additions and 6 deletions

View File

@@ -69,16 +69,19 @@
state: started
daemon_reload: yes
- name: Flush handlers before health check
meta: flush_handlers
- name: Verify Rommie MCP endpoint is reachable
ansible.builtin.uri:
url: "http://localhost:{{rommie_port}}/mcp"
method: GET
status_code: [200, 405]
status_code: [200, 406]
timeout: 15
register: rommie_health
retries: 5
delay: 3
until: rommie_health.status in [200, 405]
until: rommie_health.status in [200, 406]
handlers:
- name: Reload systemd