chore: switch to ollama model

This commit is contained in:
Peter 2024-10-30 19:35:23 +01:00
parent f62cfea083
commit 8c062395be
Signed by: prskr
GPG key ID: F56BED6903BC5E37
2 changed files with 10 additions and 4 deletions

View file

@ -15,8 +15,8 @@
},
"assistant": {
"default_model": {
"provider": "copilot_chat",
"model": "gpt-4o"
"provider": "ollama",
"model": "deepseek-coder-v2:latest"
},
"version": "2"
},
@ -28,10 +28,11 @@
},
"languages": {
"CSharp": {
"language_servers": ["omnisharp"],
"show_copilot_suggestions": true
},
"proto": {
"language_servers": ["proto"]
"Proto": {
"language_servers": ["protobuf-language-server"]
},
"Go": {
"inlay_hints": {

View file

@ -47,6 +47,11 @@ if [ -d /usr/local/go/bin ]; then
fi
export PATH="$PATH:$HOME/go/bin"
# Cargo
if [ -d "$HOME/.cargo/bin" ]; then
export PATH="$PATH:$HOME/.cargo/bin"
fi
# Yarn
if [ -d $HOME/.yarn/bin ]; then
export PATH="$PATH:$HOME/.yarn/bin"