mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

- Changed default model from `ollama:llama3.2:3b` to `ollama:gemma3:4b` - Updated model token limits and added new models: - Added `gemma3:4b` with vision support - Removed `phi4:14b` and added `phi4-reasoning:14b` - Updated token limits for existing models - Added new AI-related roles: - `commit-message.md` - `email-answer.md` - `emoji-commit-message.md` - `git-branch.md` - `improve-prompt.md` - `improve-writing.md` - `linkedin-answer.md` - Enhanced `to-emoji.md` and added `to-emojies.md` - Added `ai` alias for `aichat` in fish config - Updated NixOS configuration to load new models
67 lines
1.5 KiB
YAML
67 lines
1.5 KiB
YAML
# model: ollama:gemma3:4b
|
|
model: deepseek:deepseek-chat
|
|
keybindings: vi
|
|
function_calling: true
|
|
rag_embedding_model: nomic-embed-text:latest
|
|
clients:
|
|
- type: openai-compatible
|
|
name: ollama
|
|
api_base: http://127.0.0.1:11434/v1
|
|
models:
|
|
- name: llama3.2:3b
|
|
max_input_tokens: 128000
|
|
supports_function_calling: true
|
|
|
|
- name: phi4-reasoning:14b
|
|
max_input_tokens: 32000
|
|
supports_function_calling: true
|
|
|
|
- name: dolphin3:8b
|
|
max_input_tokens: 128000
|
|
supports_function_calling: true
|
|
|
|
- name: smallthinker:3b
|
|
max_input_tokens: 32000
|
|
supports_function_calling: true
|
|
|
|
- name: gemma3:4b
|
|
max_input_tokens: 128000
|
|
supports_vision: true
|
|
supports_function_calling: true
|
|
|
|
- name: gemma3:12b
|
|
max_input_tokens: 128000
|
|
supports_vision: true
|
|
supports_function_calling: true
|
|
|
|
- name: gemma3:27b
|
|
max_input_tokens: 128000
|
|
supports_vision: true
|
|
supports_function_calling: true
|
|
|
|
- name: deepcoder:14b
|
|
max_input_tokens: 128000
|
|
|
|
- name: qwen3:14b
|
|
max_input_tokens: 40000
|
|
supports_function_calling: true
|
|
|
|
- name: nomic-embed-text:latest
|
|
type: embedding
|
|
|
|
- type: openai-compatible
|
|
name: deepseek
|
|
api_base: https://api.deepseek.com/v1
|
|
api_key: your_api_key # FIXME
|
|
models:
|
|
- name: deepseek-chat
|
|
max_input_tokens: 64000
|
|
supports_vision: true
|
|
supports_function_calling: true
|
|
|
|
- name: deepseek-reasoner
|
|
max_input_tokens: 64000
|
|
supports_vision: true
|
|
supports_function_calling: true
|
|
|