mlx-vlm 기반 ollama 호환 프록시 서버 추가 (port 11435). n8n GEN 노드 6개에 callLLM 래퍼 주입 (health check + ollama fallback). 임베딩/리랭커는 ollama(LOCAL_EMBED_URL)로 분리. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
840 B
Plaintext
28 lines
840 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>com.mlx-proxy</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/Users/hyungi/mlx-env/bin/uvicorn</string>
|
|
<string>mlx_proxy:app</string>
|
|
<string>--host</string>
|
|
<string>0.0.0.0</string>
|
|
<string>--port</string>
|
|
<string>11435</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>/Users/hyungi/Documents/code/syn-chat-bot</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>StandardOutPath</key>
|
|
<string>/tmp/mlx-proxy.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>/tmp/mlx-proxy.err</string>
|
|
</dict>
|
|
</plist>
|