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 `moonshot/kimi-k2-0711-preview` to `z/glm-4.5` - Added new provider configuration for Z AI with GLM-4.5 model - Added hyprpolkitagent to Hyprland packages - Updated Ollama models list (removed some Gemma models, added qwen3-coder) - Added chromium and playwright to system packages
102 lines
1.9 KiB
JSON
102 lines
1.9 KiB
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"model": "z/glm-4.5",
|
|
"theme": "catppuccin",
|
|
"provider": {
|
|
"moonshot": {
|
|
"name": "Moonshot",
|
|
"npm": "@ai-sdk/openai-compatible",
|
|
"options": {
|
|
"baseURL": "https://api.moonshot.ai/v1"
|
|
},
|
|
"models": {
|
|
"kimi-k2-0711-preview": {
|
|
"name": "Kimi-K2"
|
|
}
|
|
}
|
|
},
|
|
"z": {
|
|
"name": "Z",
|
|
"npm": "@ai-sdk/openai-compatible",
|
|
"options": {
|
|
"baseURL": "https://api.z.ai/api/paas/v4"
|
|
},
|
|
"models": {
|
|
"glm-4.5": {
|
|
"name": "GLM-4.5"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"mcp": {
|
|
"context7": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"-y",
|
|
"@upstash/context7-mcp"
|
|
],
|
|
"enabled": true
|
|
},
|
|
"playwright": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"-y",
|
|
"@playwright/mcp"
|
|
],
|
|
"enabled": true
|
|
},
|
|
"searxng": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"-y",
|
|
"mcp-searxng"
|
|
],
|
|
"enabled": true,
|
|
"environment": {
|
|
"SEARXNG_URL": "http://127.0.0.1:7777"
|
|
}
|
|
},
|
|
"mcp-server-git": {
|
|
"type": "local",
|
|
"command": [
|
|
"uvx",
|
|
"--python",
|
|
"/run/current-system/sw/bin/python",
|
|
"mcp-server-git"
|
|
],
|
|
"enabled": true
|
|
},
|
|
"time": {
|
|
"type": "local",
|
|
"command": [
|
|
"uvx",
|
|
"--python",
|
|
"/run/current-system/sw/bin/python",
|
|
"mcp-server-time"
|
|
],
|
|
"enabled": true
|
|
},
|
|
"sequential-thinking": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"-y",
|
|
"@modelcontextprotocol/server-sequential-thinking"
|
|
],
|
|
"enabled": true
|
|
},
|
|
"filesystem": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"-y",
|
|
"@modelcontextprotocol/server-filesystem",
|
|
"/home/xnm"
|
|
],
|
|
"enabled": true
|
|
}
|
|
}
|
|
} |