pass model env var to sandbox (#167)
This commit is contained in:
parent
f34ac6272c
commit
39cdba06a6
1 changed files with 3 additions and 0 deletions
|
|
@ -56,6 +56,9 @@ done
|
|||
# copy GEMINI_API_KEY
|
||||
if [ -n "${GEMINI_API_KEY:-}" ]; then run_args+=(--env GEMINI_API_KEY="$GEMINI_API_KEY"); fi
|
||||
|
||||
# copy GEMINI_CODE_MODEL
|
||||
if [ -n "${GEMINI_CODE_MODEL:-}" ]; then run_args+=(--env GEMINI_CODE_MODEL="$GEMINI_CODE_MODEL"); fi
|
||||
|
||||
# copy SHELL_TOOL to optionally enable shell tool
|
||||
if [ -n "${SHELL_TOOL:-}" ]; then run_args+=(--env SHELL_TOOL="$SHELL_TOOL"); fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue