chore: switch to ollama model
This commit is contained in:
parent
f62cfea083
commit
8c062395be
2 changed files with 10 additions and 4 deletions
|
@ -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": {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue