允许您像 Github copilot 一样使用 ollama 作为副驾驶的代理
确保 ollama 已安装:
curl -fsSL https://ollama.com/install.sh | sh
或者按照手动安装。
要使用ollama-copilot
期望的默认模型:
ollama pull codellama:code
go install github.com/bernardo-bruning/ollama-copilot@latest
确保您的$PATH
包含$HOME/go/bin
或$GOPATH/bin
。例如,在~/.bashrc
或~/.zshrc
中:
export PATH= " $HOME /go/bin: $GOPATH /bin: $PATH "
ollama-copilot
let g: copilot_proxy = ' http://localhost:11435 '
let g: copilot_proxy_strict_ssl = v: false
{
"github.copilot.advanced" : {
"debug.overrideProxyUrl" : " http://localhost:11437 "
},
"http.proxy" : " http://localhost:11435 " ,
"http.proxyStrictSSL" : false
}