Skip to content

Commit 0c52922

Browse files
committed
hotfix openai key detection
1 parent 9ce5f75 commit 0c52922

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/cli/oclif.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,5 +195,5 @@
195195
]
196196
}
197197
},
198-
"version": "0.2.9"
198+
"version": "0.2.10"
199199
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smythos/cli",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"description": "SmythOS SRE Command Line Interface",
55
"keywords": [
66
"smythos",

packages/cli/src/commands/create/create.index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const vaultTemplate = {
3131

3232
const detectApiKeys = () => {
3333
const keys: { [key: string]: string | undefined } = {
34-
openai: process.env.OPENAI_API_KEY || 'fake API key for testing',
34+
openai: process.env.OPENAI_API_KEY,
3535
anthropic: process.env.ANTHROPIC_API_KEY,
3636
google: process.env.GOOGLE_API_KEY,
3737
};

0 commit comments

Comments
 (0)