Persistent semantic memory HTTP server for AI agents. No cloud, no API keys. Local vector index with Ollama/TF-IDF embeddings. Endpoints: /store, /recall, /forget, /list, /health
38 lines
927 B
Plaintext
38 lines
927 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.memory-bridge</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>NODE_BIN</string>
|
|
<string>INSTALL_DIR/server.js</string>
|
|
</array>
|
|
|
|
<key>WorkingDirectory</key>
|
|
<string>INSTALL_DIR</string>
|
|
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
|
|
<key>StandardOutPath</key>
|
|
<string>HOME_DIR/.memory-bridge/server.log</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
<string>HOME_DIR/.memory-bridge/server-error.log</string>
|
|
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
|
|
<key>HOME</key>
|
|
<string>HOME_DIR</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|