gpts: default to llama3.2 for consistency with text selection response

This commit is contained in:
end-4
2025-04-06 16:32:22 +02:00
parent caf2ddc0cc
commit c98b8f696a
2 changed files with 5 additions and 5 deletions
@@ -3,7 +3,7 @@
{ {
// General stuff // General stuff
"ai": { "ai": {
"defaultGPTProvider": "openai", "defaultGPTProvider": "ollama_llama_3_2",
"defaultTemperature": 0.5, "defaultTemperature": 0.5,
"enhancements": true, "enhancements": true,
"keep_alive": -1, // For ollama. -1 means forever "keep_alive": -1, // For ollama. -1 means forever
+4 -4
View File
@@ -7,14 +7,14 @@ import Soup from 'gi://Soup?version=3.0';
import { fileExists } from '../modules/.miscutils/files.js'; import { fileExists } from '../modules/.miscutils/files.js';
const PROVIDERS = Object.assign({ const PROVIDERS = Object.assign({
"ollama": { "ollama_llama_3_2": {
"name": "Ollama - Llama 3", "name": "Ollama - Llama 3.2",
"logo_name": "ollama-symbolic", "logo_name": "ollama-symbolic",
"description": getString('Ollama - Llama-3'), "description": getString('Ollama - Llama-3.2'),
"base_url": 'http://localhost:11434/v1/chat/completions', "base_url": 'http://localhost:11434/v1/chat/completions',
"key_get_url": "", "key_get_url": "",
"key_file": "ollama_key.txt", "key_file": "ollama_key.txt",
"model": "llama3", "model": "llama3.2",
}, },
"ollama_deepseek_r1": { "ollama_deepseek_r1": {
"name": "Ollama - DeepSeek R1", "name": "Ollama - DeepSeek R1",