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": {
|
"assistant": {
|
||||||
"default_model": {
|
"default_model": {
|
||||||
"provider": "copilot_chat",
|
"provider": "ollama",
|
||||||
"model": "gpt-4o"
|
"model": "deepseek-coder-v2:latest"
|
||||||
},
|
},
|
||||||
"version": "2"
|
"version": "2"
|
||||||
},
|
},
|
||||||
|
@ -28,10 +28,11 @@
|
||||||
},
|
},
|
||||||
"languages": {
|
"languages": {
|
||||||
"CSharp": {
|
"CSharp": {
|
||||||
|
"language_servers": ["omnisharp"],
|
||||||
"show_copilot_suggestions": true
|
"show_copilot_suggestions": true
|
||||||
},
|
},
|
||||||
"proto": {
|
"Proto": {
|
||||||
"language_servers": ["proto"]
|
"language_servers": ["protobuf-language-server"]
|
||||||
},
|
},
|
||||||
"Go": {
|
"Go": {
|
||||||
"inlay_hints": {
|
"inlay_hints": {
|
||||||
|
|
|
@ -47,6 +47,11 @@ if [ -d /usr/local/go/bin ]; then
|
||||||
fi
|
fi
|
||||||
export PATH="$PATH:$HOME/go/bin"
|
export PATH="$PATH:$HOME/go/bin"
|
||||||
|
|
||||||
|
# Cargo
|
||||||
|
if [ -d "$HOME/.cargo/bin" ]; then
|
||||||
|
export PATH="$PATH:$HOME/.cargo/bin"
|
||||||
|
fi
|
||||||
|
|
||||||
# Yarn
|
# Yarn
|
||||||
if [ -d $HOME/.yarn/bin ]; then
|
if [ -d $HOME/.yarn/bin ]; then
|
||||||
export PATH="$PATH:$HOME/.yarn/bin"
|
export PATH="$PATH:$HOME/.yarn/bin"
|
||||||
|
|
Loading…
Reference in a new issue