Artur Mukhamadiev 23d6cb6c30 feat(llamacpp) scripts to run gemma4 and ornihth-1.0
:Release Notes:
- placed in llama-cpp/ folder
- several changes in opencode browser-butler agent file
  - added bash exec capability to provide with current date
    functionality
- added local models to opencode local configuration

:Detailed Notes:
-

:Testing Performed:
- opencode starting up with changed files
- local models are pulled and started up

:QA Notes:
-

:Issues Addressed:
-
2026-07-01 11:13:09 +03:00

36 lines
772 B
JSON

{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"chrome-devtools": {
"type": "local",
"command": ["npx", "-y", "chrome-devtools-mcp@latest", "--browser-url=http://127.0.0.1:9222"]
}
},
"provider": {
"llama.cpp": {
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://localhost:8080/v1"
},
"models": {
"ornith-1.0": {
"tool_call": true,
"reasoning": true,
"limit": {
"context": 65536,
"output": 8192
}
},
"gemma-4": {
"tool_call": true,
"reasoning": true,
"limit": {
"context": 131072,
"output": 8192
}
}
}
}
}
}