: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:
-
36 lines
772 B
JSON
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|