We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce5f75 commit 0c52922Copy full SHA for 0c52922
packages/cli/oclif.manifest.json
@@ -195,5 +195,5 @@
195
]
196
}
197
},
198
- "version": "0.2.9"
+ "version": "0.2.10"
199
packages/cli/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@smythos/cli",
3
- "version": "0.2.9",
+ "version": "0.2.10",
4
"description": "SmythOS SRE Command Line Interface",
5
"keywords": [
6
"smythos",
packages/cli/src/commands/create/create.index.ts
@@ -31,7 +31,7 @@ const vaultTemplate = {
31
32
const detectApiKeys = () => {
33
const keys: { [key: string]: string | undefined } = {
34
- openai: process.env.OPENAI_API_KEY || 'fake API key for testing',
+ openai: process.env.OPENAI_API_KEY,
35
anthropic: process.env.ANTHROPIC_API_KEY,
36
google: process.env.GOOGLE_API_KEY,
37
};
0 commit comments