Add secrets file
All checks were successful
/ Test config on 20 (push) Successful in 22s

This commit is contained in:
Maciej 2026-04-29 11:44:16 +03:00
parent e7d2eb2271
commit ad216be727
Signed by: maciej
GPG key ID: 28243AF437E32F99
4 changed files with 15 additions and 20 deletions

View file

@ -10,6 +10,7 @@
;;; Code:
(declare-function agent-shell-make-environment-variables 'agent-shell)
(defvar icejam-variables-to-load-in-agent-shell '())
(use-package agent-shell
:ensure t
@ -21,9 +22,9 @@
(setopt agent-shell-anthropic-claude-environment
(agent-shell-make-environment-variables :inherit-env t))
(setopt agent-shell-opencode-environment
(agent-shell-make-environment-variables
:inherit-env t
"GOOGLE_CLOUD_PROJECT" "mv-ai-architecture"))
(apply #'agent-shell-make-environment-variables
:inherit-env t
icejam-variables-to-load-in-agent-shell))
(setopt
agent-shell-opencode-default-model-id
"google-vertex-anthropic/claude-sonnet-4-6@default"))