Skip to content

Commit 21b82c3

Browse files
fix(tests): update OpenAI env vars to API names
- Updated env vars in tests integration helpers to align with API-based keys. - Removed legacy OPENAI_COMPACT_* vars in favor of OPENAI_API_* keys. Applies test helper changes to use the new OpenAI API env vars instead of the compact ones. Co-Authored-By: Ai Commit <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 734efbf commit 21b82c3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/helpers.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ export const runCli = (args: ReadonlyArray<string>, options: CliOptions) => {
190190
const env = {
191191
PWD: options.cwd,
192192
XDG_CONFIG_HOME: isolatedConfigHome,
193-
OPENAI_COMPACT_API_KEY: "",
194-
OPENAI_COMPACT_API_BASE_URL: "",
195-
OPENAI_COMPACT_MODEL: "",
193+
OPENAI_API_KEY: "",
194+
OPENAI_API_BASE_URL: "",
195+
OPENAI_MODEL: "",
196196
GIT_AGENT_BUILD_API_KEY: "",
197197
GIT_AGENT_BUILD_BASE_URL: "",
198198
GIT_AGENT_BUILD_MODEL: "",

0 commit comments

Comments
 (0)