Last active
January 12, 2024 06:59
-
-
Save zenixls2/22dc773b55db63434c3803cf89b4858f to your computer and use it in GitHub Desktop.
tabby code ML in MacOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| filetype plugin indent on | |
| call plug#begin() | |
| Plug 'TabbyML/vim-tabby' | |
| call plug#end() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [server] | |
| # ~/.tabby-client/agent/config.toml | |
| endpoint = "http://localhost:9030" # http or https URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!---~/Library/LaunchAgents/homebrew.mxcl.tabby.plist--> | |
| <!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>homebrew.mxcl.tabby</string> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>ProcessType</key> | |
| <string>Background</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/StarCoder-1B</string> | |
| <string>--port</string> | |
| <string>9030</string> | |
| </array> | |
| <key>WorkingDirectory</key> | |
| <string>/Users/zenix.huang</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brew install tabbyml/tabby/tabby
launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.tabby.plist
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.tabby.plist