@orchagent/cli 0.3.120 → 0.3.121

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,7 +87,7 @@ async function getResolvedConfig(overrides = {}, profile) {
87
87
  // If profile specified, get config from profiles
88
88
  const profileConfig = profile ? fileConfig.profiles?.[profile] : undefined;
89
89
  const apiKey = overrides.api_key ??
90
- process.env.ORCHAGENT_API_KEY ??
90
+ (process.env.ORCHAGENT_API_KEY || undefined) ??
91
91
  profileConfig?.api_key ??
92
92
  fileConfig.api_key;
93
93
  const apiUrl = overrides.api_url ??
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchagent/cli",
3
- "version": "0.3.120",
3
+ "version": "0.3.121",
4
4
  "description": "Command-line interface for orchagent — deploy and run AI agents for your team",
5
5
  "license": "MIT",
6
6
  "author": "orchagent <hello@orchagent.io>",