hedgequantx 2.6.66 → 2.6.68
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.
- package/package.json +1 -1
- package/src/menus/ai-agent.js +2 -5
package/package.json
CHANGED
package/src/menus/ai-agent.js
CHANGED
|
@@ -891,12 +891,9 @@ const setupConnection = async (provider, option) => {
|
|
|
891
891
|
|
|
892
892
|
console.log(makeLine(''));
|
|
893
893
|
|
|
894
|
-
// Show URL
|
|
894
|
+
// Show URL for reference (no browser needed - user already has API key)
|
|
895
895
|
if (option.url && (field === 'apiKey' || field === 'sessionKey' || field === 'accessToken')) {
|
|
896
|
-
console.log(makeLine(chalk.cyan('
|
|
897
|
-
console.log(makeLine(''));
|
|
898
|
-
console.log(makeLine(chalk.white('OPENING BROWSER...')));
|
|
899
|
-
openBrowser(option.url);
|
|
896
|
+
console.log(makeLine(chalk.cyan('GET KEY: ') + chalk.white(option.url)));
|
|
900
897
|
}
|
|
901
898
|
|
|
902
899
|
// Show default for endpoint
|