| commit | cd26ab6a39f0b21cb37e68a0c7342edfc91284b6 | [log] [tgz] |
|---|---|---|
| author | Philip Zeyliger <philip@bold.dev> | Tue Jul 29 11:54:35 2025 -0700 |
| committer | Philip Zeyliger <philip@bold.dev> | Tue Jul 29 11:54:57 2025 -0700 |
| tree | 28efbb874ce14e437b511552717910887a92536a | |
| parent | 561174077c5bce5c49f0c986696c547685f4f8ae [diff] |
sketchdev mcp: fix missing env variable for MCP substitution
diff --git a/cmd/sketch/main.go b/cmd/sketch/main.go index 103ebc4..74571f7 100644 --- a/cmd/sketch/main.go +++ b/cmd/sketch/main.go
@@ -639,6 +639,7 @@ // This is needed for MCP server authentication placeholder replacement if pubKey != "" { os.Setenv("SKETCH_PUB_KEY", pubKey) + os.Setenv("SKETCH_MODEL_API_KEY", apiKey) } wd, err := os.Getwd()