From 7b96ca27d8320154c42016d1cac1a01bac973317 Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Tue, 10 Mar 2026 02:33:37 +0000 Subject: [PATCH] Add Opencode config. This was mostly done with big pickle but when I ran out of tokens, I switched to Qwen3.5 35B --- opencode.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 opencode.json diff --git a/opencode.json b/opencode.json new file mode 100644 index 0000000..d8d42a3 --- /dev/null +++ b/opencode.json @@ -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" + } + } + } +}