Skip to content

Instantly share code, notes, and snippets.

@DattatreyaReddy
Created February 21, 2024 05:28
Show Gist options
  • Save DattatreyaReddy/091bb139a84ec5729afd04bdf5cd51cb to your computer and use it in GitHub Desktop.
Save DattatreyaReddy/091bb139a84ec5729afd04bdf5cd51cb to your computer and use it in GitHub Desktop.
Tabby plist for mac

Start on boot

  • paste these in ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/com.tabbyml.server.plist
launchctl load ~/Library/LaunchAgents/com.tabbyml.scheduler.plist
<?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.tabbyml.scheduler</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/tabby</string>
<string>scheduler</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
<?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.tabbyml.server</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/tabby</string>
<string>serve</string>
<string>--device</string>
<string>metal</string>
<string>--model</string>
<string>TabbyML/DeepseekCoder-1.3B</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment