Add Opencode config. This was mostly done with big pickle but when I ran out of tokens, I switched to Qwen3.5 35B

This commit is contained in:
Timothy Farrell 2026-03-10 02:33:37 +00:00
parent 2e54447e15
commit 7b96ca27d8

25
opencode.json Normal file
View File

@ -0,0 +1,25 @@
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"ollama": {
"npm": "@ai-sdk/openai-compatible",
"name": "Local Llama-server",
"options": {
"baseURL": "http://llamaserver:8080/v1"
},
"models": {
"Qwen3.5-35B-A3B": {
"name": "Qwen3.5 35B-A3B"
}
}
},
"aws": {
"options": {
"accessKeyId": "{env:AWS_ACCESS_KEY_ID}",
"secretAccessKey": "{env:AWS_SECRET_ACCESS_KEY}",
"region": "us-east-1"
}
}
}
}