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": { "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": {

View file

@ -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"