forked from Shinonome/dots-hyprland
gpts: default to llama3.2 for consistency with text selection response
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user